You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1005 B
33 lines
1005 B
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Se connecter</title>
|
|
<link rel="stylesheet" href="../css/bootstrap.min.css">
|
|
</head>
|
|
<body>
|
|
<h1>Se connecter</h1>
|
|
|
|
<center>
|
|
<form action="#" method="post">
|
|
<label for="login">Login</label><br>
|
|
<input type="text" name="login" id="login">
|
|
<br>
|
|
<label for="login">Mot de passe</label><br>
|
|
<label for="password">
|
|
<input type="password" name="password" id="password">
|
|
</label>
|
|
<br><br>
|
|
<input type="submit" value="Valider">
|
|
{% for error in dErreur %}
|
|
<br>
|
|
<p style="color: red">
|
|
{{error}}
|
|
</p>
|
|
{% endfor %}
|
|
</form>
|
|
</center>
|
|
|
|
<script src="../js/bootstrap.min.js"></script>
|
|
</body>
|
|
</html> |