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 %}
|
|
|
|
|
|
|
|
{% block content %}
|
2022-04-29 02:33:00 +00:00
|
|
|
<main>
|
|
|
|
{% if error %}
|
|
|
|
<p>
|
|
|
|
{{ error }}
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
<form method="POST" action="/login">
|
|
|
|
<input type="text" name="username">
|
|
|
|
<input type="password" name="password">
|
|
|
|
<input type="submit" value="Se connecter">
|
|
|
|
</form>
|
|
|
|
</main>
|
2022-04-29 02:29:10 +00:00
|
|
|
{% endblock content %}
|