{% extends "admin/base_site.html" %} {% load i18n admin_static %} {% load sqrl %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block bodyclass %}{{ block.super }} login{% endblock %} {% block nav-global %}{% endblock %} {% block content_title %}{% endblock %} {% block breadcrumbs %}{% endblock %} {% block content %} {% if form.errors and not form.non_field_errors %}

{% if form.errors.items|length == 1 %} {% trans "Please correct the error below." %}{% else %} {% trans "Please correct the errors below." %}{% endif %}

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

{{ error }}

{% endfor %} {% endif %}
{% csrf_token %}
{{ form.username.errors }} {{ form.username }}
{{ form.password.errors }} {{ form.password }}
{% url 'admin_password_reset' as password_reset_url %} {% if password_reset_url %} {% endif %}
{% sqrl as sqrl_session %} {% if sqrl_session.sqrl_url %}

or

Login using SQRL

SQRL Login
What is SQRL?
{% else %}

You are not connected on a secure connection. For your safety, SQRL login is disabled. It is advised that you do not log into this website at all until you are connected via a HTTPS connection.

{% endif %}
{% endblock %}