Files
srvflask/templates/formulaire.html
2026-03-02 14:42:04 +01:00

17 lines
545 B
HTML

<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Formulaire</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<h1>Formulaire</h1>
<form action="{{ url_for('resultat') }}" method="post">
<label>Nom : <input type="text" name="nom" required></label><br>
<label>Prénom : <input type="text" name="prenom" required></label><br>
<button type="submit">Envoyer</button>
</form>
<p><a href="{{ url_for('index') }}">Retour</a></p>
</body>
</html>