28 lines
No EOL
1.1 KiB
HTML
28 lines
No EOL
1.1 KiB
HTML
<!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="/api/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>
|
|
</body>
|
|
</html> |