{% extends "base.html" %} {% load i18n %} {% block content %}

{% trans "Sign in" %}

{% trans "Local sign in" %}

{% csrf_token %}
{{ form.as_p }}

{% trans "Forgot Password?" %}

{% if SAML_ENABLED %} {% load idplist mailtoadmins %}

{% trans "Federated sign in" %}

{% csrf_token %} {% idplist as idps %} {% if idps|length_is:"0" %}

{% trans "There are no IdPs configured, please check the configuration" %}

{% elif idps|length_is:"1" %}
{% else %}

{% trans "Don't see your IdP in this list?" %} {% mailtoadmins %}

{% endif %}
{% endif %} {% if REMOTE_USER_ENABLED %}

{% trans "Remote User sign in" %}

{% trans "Sign in using your web server REMOTE_USER header" %}

{% endif %}
{% endblock %}