16 lines
468 B
HTML
16 lines
468 B
HTML
<!doctype html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Recherche</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
</head>
|
|
<body>
|
|
<h1>Rechercher</h1>
|
|
<form action="{{ url_for('resultat_recherche') }}" method="post">
|
|
<label>Nom : <input name="nom" required></label>
|
|
<button type="submit">Chercher</button>
|
|
</form>
|
|
<p><a href="{{ url_for('index') }}">Retour</a></p>
|
|
</body>
|
|
</html> |