19 lines
415 B
HTML
19 lines
415 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>RSVP - Vicky & Remi</title>
|
|
</head>
|
|
<body>
|
|
{% if error %}
|
|
<p class="error">{{ error }}</p>
|
|
{% endif %}
|
|
<form action="{{ url_for('form') }}" method="POST">
|
|
<p>
|
|
Code sur l'invitation:
|
|
<input type="text" name="code" placeholder="ABCD" />
|
|
</p>
|
|
<p><input type="submit" value="RSVP" /></p>
|
|
</form>
|
|
</body>
|
|
</html>
|