{% extends 'registration/registration_base.html' %} {% load i18n %} {% load settings %} {% block registration_content %} {% if form.errors %}

{% trans "Invalid credentials." %} {% trans "Note that both fields are case-sensitive." %}

{% endif %} {% is_single_user_mode as autologin %} {% if autologin %} {% else %}
{% csrf_token %} {% for field in form %} {% include 'registration/form_field.html' %} {% endfor %}

Forgot your password?

{% endif %} {% endblock %}