2023-05-15 04:28:05 +02:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="fr">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport"
|
|
|
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
2023-05-15 05:15:34 +02:00
|
|
|
<link href="/static/login.css" rel="stylesheet" type="text/css">
|
2023-05-15 04:28:05 +02:00
|
|
|
<title>Se connecter</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
2023-05-15 05:15:34 +02:00
|
|
|
<h1>Se connecter</h1>
|
|
|
|
<p>Vous pouvez utiliser les identifiants de démonstration : <strong>demo</strong>/<strong>demo</strong>.</p>
|
|
|
|
{% if request.args["error"] %}
|
|
|
|
<p class="error-box">Nom d'utilisateur ou mot de passe invalide.</p>
|
|
|
|
{% endif %}
|
2023-05-15 04:28:05 +02:00
|
|
|
<form method="post">
|
2023-05-15 05:15:34 +02:00
|
|
|
<table>
|
|
|
|
<tr><th>Nom d'utilisateur</th><td><input type="text" name="username"></td></tr>
|
|
|
|
<tr><th>Mot de passe</th><td><input type="password" name="password"></td></tr>
|
|
|
|
</table>
|
2023-05-15 04:28:05 +02:00
|
|
|
<input type="submit">
|
|
|
|
</form>
|
|
|
|
</body>
|
|
|
|
</html>
|