{% extends 'base.html' %} {% load static %} {% load projectroles_tags %} {% load projectroles_common_tags %} {% get_django_setting 'SITE_INSTANCE_TITLE' as site_title %} {% block title %}Login{% endblock title %} {% block content %}
{# Django messages / site app messages #} {% include 'projectroles/_messages.html' %} {# Display error if login was unsuccessful. #} {% if request.POST %}
Login failed. Please make sure the user name, domain and password are correct.
{% endif %}

Login

{% autoescape off %} {% get_login_info %} {% endautoescape %} {% get_django_setting 'ENABLE_SAML' as enable_saml %} {% if enable_saml %}

To log in with your SSO provider, please click below.

Single Sign-On {% endif %}
{# Optional template for additional login page HTML #} {% template_exists 'include/_login_extend.html' as login_extend %} {% if login_extend %} {% include 'include/_login_extend.html' %} {% endif %}
{% endblock content %} {% block javascript %} {{ block.super }} {% endblock javascript %}