{% extends "admin/login.html" %} {% load i18n admin_static %} {% block branding %}

{% trans 'Single Sign-on' %}

{% endblock %} {% block welcome-msg %}{% endblock %} {% block userlinks %}{% 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 %}
{% if ssouser.is_authenticated and not ssouser.is_anonymous %}

Continue with current user? {{ ssouser }}

continue switch account

please finish the login in {{ sso_timeout }} seconds.

{% else %}
{% csrf_token %}
{{ form.username.errors }} {{ form.username.label_tag }} {{ form.username }}
{{ form.password.errors }} {{ form.password.label_tag }} {{ form.password }}
{% url 'admin_password_reset' as password_reset_url %} {% if password_reset_url %} {% endif %}
{%endif%}
{% endblock %}