{% extends "sentry/bases/auth.html" %} {% load crispy_forms_tags %} {% load i18n %} {% load sentry_auth %} {% block title %}{% trans "Login" %} | {{ block.super }}{% endblock %} {% block auth_main %} {% if banner %}

{{ banner }}

{% endif %}
{% csrf_token %} {{ login_form|as_crispy_errors }} {% for field in login_form %} {{ field|as_crispy_field }} {% endfor %}
{% trans "Lost your password?" %}
{% csrf_token %} {{ register_form|as_crispy_errors }} {% for field in register_form %} {% if not field.name == 'subscribe' %} {{ field|as_crispy_field }} {% endif %} {% endfor %} {% if register_form.subscribe %} {% with register_form.subscribe as field %}
{{ field.help_text }}
{{ field }} {% if field.errors %} {% for error in field.errors %}

{{ error }}

{% endfor %} {% endif %}
{% endwith %} {% endif %}
{% trans "Privacy Policy" %}
{% csrf_token %}

Enter your organization's ID and we'll get things started.

Your ID is the reference used when Sentry generates URLs.
e.g. {{ server_hostname }}/acme/

{% endblock %}