18 lines
372 B
HTML
18 lines
372 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Login ⋅ {% endblock title %}
|
|
|
|
{% block content %}
|
|
<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>
|
|
{% endblock content %}
|