{% extends "base.html" %} {% load i18n %} {% load translations %} {% load authnames %} {% load crispy_forms_tags %} {% block breadcrumbs %}
  • {% trans "Sign in" %}
  • {% endblock %} {% block content %}
    {% if form.errors %} {% trans "This username/password combination was not found. Please try again." as msg %} {% show_message "error" msg %} {% endif %}

    {{ site_title }}

    {% include "snippets/login-info.html" %}

    {% trans "Sign in" %}

    {% csrf_token %} {{ form|crispy }}
    {% if login_backends %} {% for name in login_backends %} {% endfor %} {% endif %} {% if can_reset or registration_open %}
    {% endif %}
    {% endblock %}