{% extends "base.html" %} {% load static %} {% load i18n %} {% block title %}{% trans "Login" %}{% endblock %} {% block css_import %} {{block.super}} {% endblock %} {% block login_actif %}actif{% endblock %} {% block main_content %}

{% trans "Authentication" %}

{% if form.errors %}

{% trans "Sorry, that's not a valid username or password." %}

{% endif %}
{% csrf_token %}

{{form.username}}

{{form.password}}

{% trans "Forgot password ?" %}

{% trans "Still not a user ? Create an account" %}

{% endblock %}