2022-05-10 19:11:49 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>RSVP - Vicky & Remi</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
2022-05-11 00:58:27 +00:00
|
|
|
{% if error %}
|
|
|
|
<p class="error">{{ error }}</p>
|
|
|
|
{% endif %}
|
2022-05-10 19:11:49 +00:00
|
|
|
<form action="" method="POST">
|
|
|
|
<p>
|
2022-05-11 00:58:27 +00:00
|
|
|
<label for="adults">Adultes :</label>
|
2022-05-22 05:04:09 +00:00
|
|
|
<input
|
|
|
|
type="number"
|
|
|
|
name="adults" id="adults"
|
|
|
|
min="1" max="5"
|
|
|
|
{% if adults is not none %}
|
|
|
|
value="{{ adults }}"
|
|
|
|
{% else %}
|
|
|
|
value="1"
|
|
|
|
{% endif %}
|
|
|
|
/>
|
2022-05-10 19:11:49 +00:00
|
|
|
</p>
|
|
|
|
<p>
|
2022-05-11 00:58:27 +00:00
|
|
|
<label for="children">Enfants :</label>
|
2022-05-22 05:04:09 +00:00
|
|
|
<input
|
|
|
|
type="number"
|
|
|
|
name="children" id="children"
|
|
|
|
min="0" max="5"
|
|
|
|
{% if children is not none %}
|
|
|
|
value="{{ children }}"
|
|
|
|
{% else %}
|
|
|
|
value="0"
|
|
|
|
{% endif %}
|
|
|
|
/>
|
2022-05-10 19:11:49 +00:00
|
|
|
</p>
|
|
|
|
<p><input type="submit" value="RSVP" /></p>
|
|
|
|
</form>
|
|
|
|
</body>
|
|
|
|
</html>
|