collinenlucy.nl/client/rsvp.html

39 lines
No EOL
1.7 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 id="rsvps" action="/api/rsvps" method="post">
<div>
<span>Attending:</span>
<div class="fill-right">
<label for="attending-yes">Yes</label>
<input type="radio" id="attending-yes" name="attending" value="true" required/>
<label for="attending-no">No</label>
<input type="radio" id="attending-no" name="attending" value="false" required/>
</div>
</div>
<div>
<label for="party-size">Party Size:</label>
<div class="fill-right">
<select name="party-size" name="party-size" id="party-size" >
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
</div>
</div>
<div class="members">
</div>
<br style="margin-top:10px"/>
<button class="backgroundLightGreen colorWhite">RSVP</button>
</form>
</div>
<script src="/rsvp.js"></script>
</body>
</html>