Files
avsa_form/templates/resultat.html
2024-05-11 17:25:51 +02:00

20 lines
650 B
HTML

<!DOCTYPE html>
<html lang="fr-FR">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>AVSA - Familles</title>
</head>
<body>
<h1>Votre demande a bien été prise en compte :</h1>
<p>Vous êtes : {{ user_type }}</p>
<p>Prenom : {{ first_name }}</p>
<p>Nom : {{ last_name }}</p>
<p>Téléphone : {{ user_message }}</p>
<p>Date : {{ availability_date }}</p>
<p>Horaire : de {{ start_availability_h }}h{{ start_availability_m }} à {{ end_availability_h }}h{{ end_availability_m }}</p>
<a href="/">
<button>Retour</button>
</a>
</body>
</html>