25 lines
792 B
HTML
25 lines
792 B
HTML
{% extends "bases/base.html" %}
|
|
|
|
{% block title %}Se connecter ⋅ {% endblock title %}
|
|
{% block styles %}
|
|
<link rel="stylesheet" type="text/css" href="/styles/login.css">
|
|
{% endblock styles %}
|
|
|
|
{% block content %}
|
|
<main>
|
|
<form method="POST" action="/login">
|
|
<h1>Se connecter</h1>
|
|
{% if error %}
|
|
<p class="feedback error" role="alert">
|
|
{{ error }}
|
|
</p>
|
|
{% endif %}
|
|
|
|
<label for="email">Adresse e-mail</label>
|
|
<input type="email" id="email" name="email">
|
|
<label for="password">Mot de passe</label>
|
|
<input type="password" id="password" name="password">
|
|
<input type="submit" value="Se connecter">
|
|
</form>
|
|
</main>
|
|
{% endblock content %}
|