nomilo/templates/login.html

19 lines
450 B
HTML
Raw Normal View History

2022-04-29 02:29:10 +00:00
{% extends "base.html" %}
{% 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 %}