17 lines
622 B
HTML
17 lines
622 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>
|
|
<div style = "background-color: red;display: {{display}};"><h1 style="color: yellow;";>VOUS N'AVEZ PAS DE COMPTE</h1></div>
|
|
<h1>Rechercher</h1>
|
|
<form action="{{ url_for('result_search') }}" method="post">
|
|
<label>Identifiant : <input name="Identifiant" required></label>
|
|
<label>Mot_de_passe : <input name="Mot_de_passe" required></label>
|
|
<button type="submit">connection</button>
|
|
</form>
|
|
</body>
|
|
</html> |