{% block title %}- {% trans "Login" %}{% endblock %} {% block page %}
{% csrf_token %}

{% trans "Log in with your email account" %}

{% if next %} {% if user.is_authenticated %}

{% trans "Your account doesn't have access to this page. To proceed, please login with an account that has access." %}

{% else %}

{% trans "Please login to see this page." %}

{% endif %} {% endif %} {% for error in form.non_field_errors %}

{{ error }}

{% endfor %}
{{ form.password.label_tag }}
{# Assumes you setup the password_reset view in your URLconf #}

{% trans "Forgot your password?" %}

{% endblock %}