{% extends "base/document.html" %} {% load crispy_forms_tags %} {% block title %} {% trans "Log in" %} {% endblock %} {% block content %}

{% trans "Log in" %}

{% if form.errors %}

{% trans "Your username and password didn't match. Please try again." %}

{% endif %}
{% csrf_token %} {{ form|crispy }}

{% if AS_SITE %} {% trans "If you haven't verified your email, please log in here to verify it." %} {% endif %}

{% trans "Don't have an account?" %} {% trans "Register here" %}

{% endblock %} {% block extra_js %} {% if show_email_field %} {% else %} {% endif %} {% endblock %}