{% extends "bases/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 %}