vicky-remi-wedding-website/france/france_rsvp/templates/rsvp.html

24 lines
607 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>RSVP - Vicky &amp; Remi</title>
</head>
<body>
<form action="" method="POST">
{% for person in adults %}
<p>
<input type="checkbox" name="{{ person }}" id="{{ person }}" />
<label for="{{ person }}">{{ person }}</label>
</p>
{% endfor %}
{% for person in kids %}
<p>
<input type="checkbox" name="{{ person }}" id="{{ person }}" />
<label for="{{ person }}">{{ person }}</label>
</p>
{% endfor %}
<p><input type="submit" value="RSVP" /></p>
</form>
</body>
</html>