{% extends "common.html" %} {% load i18n %} Sign In {% block head_title %}{% trans "Sign In" %} {% endblock %} {% block content %} {% load custom_tags %}


{% trans "Sign In" %}

{% if SSO %}

Organizational Login (SSO)

{% endif %} {% if SSO and DO_NOT_SHOW_LOGIN %} {% endif %}

{% if DO_NOT_SHOW_LOGIN %} {% else %}
{% csrf_token %}
{% for field in form %}
{{ field.errors }} {{ field }}

{% endfor %} {% if redirect_field_value %} {% endif %}


{% if ALLOW_REGISTRATION %} {% trans "Forgot Password?" %}

or {% trans "Create Account?" %}

{% endif %}


By using this site you agree to Terms of Service and Privacy Policy

{% endif %}
{% endblock %}