nomilo/templates/pages/login.html

25 lines
751 B
HTML
Raw Normal View History

2022-04-29 16:04:12 +00:00
{% extends "bases/base.html" %}
2022-04-29 02:29:10 +00:00
{% block title %}Login ⋅ {% endblock title %}
2023-02-22 12:52:41 +00:00
{% block styles %}
<link rel="stylesheet" type="text/css" href="/styles/login.css">
{% endblock styles %}
2022-04-29 02:29:10 +00:00
{% block content %}
2022-04-29 02:33:00 +00:00
<main>
<form method="POST" action="/login">
{% if error %}
<p class="feedback error" role="alert">
{{ error }}
</p>
{% endif %}
2023-02-22 12:52:41 +00:00
<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">
2022-04-29 02:33:00 +00:00
<input type="submit" value="Se connecter">
</form>
</main>
2022-04-29 02:29:10 +00:00
{% endblock content %}