{% extends "registration/base.html" %} {% load i18n %} {% block title %}{% translate "Log in" %}{% endblock %} {% block og_title %}{% translate "Log in" %}{% endblock %} {% block og_description %}{% translate "Log in to your account" %}{% endblock %} {% block content %}

{% translate "Log in" %}

{% if form.errors %}

{% translate "Please correct the errors below:" %}

{{ form.non_field_errors }} {% endif %}
{% csrf_token %} {% if next %} {% endif %}
{% if form.username.errors %} {{ form.username.errors|join:", " }} {% endif %} {{ form.username }}
{% if form.password.errors %} {{ form.password.errors|join:", " }} {% endif %} {{ form.password }}

{% endblock content %} {% block content-related %}

{% translate "Additional Information" %}

{% url 'registration_register' as register_url %}

{% blocktranslate trimmed %} If you don't have an account, you can sign up for one. {% endblocktranslate %}

{% url 'auth_password_reset' as reset_url %}

{% blocktranslate trimmed %} If you forgot your password, you can reset it. {% endblocktranslate %}

{% endblock content-related %}