Adding rsvp page and link from index
This commit is contained in:
parent
2ae8f6b58d
commit
0ccf781fad
2 changed files with 39 additions and 8 deletions
|
|
@ -35,14 +35,16 @@
|
||||||
<a href="https://www.openstreetmap.org/node/2869212621"><h5 class="fontS">Open Map</h5></a>
|
<a href="https://www.openstreetmap.org/node/2869212621"><h5 class="fontS">Open Map</h5></a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="rsvpButton textCenter backgroundLightGreen hidden">
|
<a href="/rsvp.html">
|
||||||
<p class="colorBlack">
|
<div class="rsvpButton textCenter backgroundLightGreen hidden">
|
||||||
R <br/>
|
<p class="colorBlack">
|
||||||
S <br/>
|
R <br/>
|
||||||
V <br/>
|
S <br/>
|
||||||
P <br/>
|
V <br/>
|
||||||
</p>
|
P <br/>
|
||||||
</div>
|
</p>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
<script src="rsvp.js"></script>
|
<script src="rsvp.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
29
client/rsvp.html
Normal file
29
client/rsvp.html
Normal file
|
|
@ -0,0 +1,29 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<link rel="stylesheet" type="text/css" href="style.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1 class="title fontXL textCenter backgroundLightGreen colorWhite">Collin and Lucy's Wedding</h1>
|
||||||
|
<div class="contents fontM">
|
||||||
|
<form action="/rsvp" method="post">
|
||||||
|
<p>
|
||||||
|
<label for="name-0">Name:</label>
|
||||||
|
<input type="text" id="name-0" name="name"/>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Age:
|
||||||
|
<label for="age-child-0">Child</label>
|
||||||
|
<input type="radio" id="age-child-0" name="child" value="true"/>
|
||||||
|
<label for="age-adult-0">Adult</label>
|
||||||
|
<input type="radio" id="age-adult-0" name="child" value="false"/>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<label for="diet-0">Dietary preferences:</label>
|
||||||
|
<textarea id="diet-0" name="dietaryPreferences"></textarea>
|
||||||
|
</p>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
<script src="rsvp.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Loading…
Add table
Reference in a new issue