login.html
1.04 KB
<!doctype html>
<html lang="fr">
<head>
{% include 'heads.html' %}
<link href="{{ url_for('auth.static', filename='signin.css') }}" rel="stylesheet" type="text/css"/>
</head>
<body class="text-center">
<form class="form-signin">
<img class="mb-4" height="72" src="{{ url_for('static', filename='img/pdc.png') }}" width="72">
<h1 class="h3 font-weight-normal mb-3">Connectez vous</h1>
<label class="sr-only" for="inputEmail">Email Adress</label>
<input autofocus class="form-control" id="inputEmail" placeholder="identifiant" required >
<label class="sr-only" for="inputPasswd">Password</label>
<input class="form-control" id="inputPasswd" placeholder="mot de passe" required type="password">
<div class="checkbox my-3">
<label>
<input type="checkbox" value="remember-me"> Se souvenir de moi
</label>
</div>
<button class="btn btn-dark btn-block btn-lg" type="submit">Connexion</button>
<div class="mt-5 mb-3 text-muted">
{% include 'copy.html' %}
</div>
</form>
</body>
</html>