{% extends "sentry/bases/auth.html" %} {% load crispy_forms_tags %} {% load i18n %} {% block title %}{% trans "Sign In" %} | {{ block.super }}{% endblock %} {% block auth_container %} {% if banner %}

{{ banner }}

{% endif %}

{% trans "Sign in to continue" %}

{% csrf_token %} {{ login_form|as_crispy_errors }} {% for field in login_form %} {{ field|as_crispy_field }} {% endfor %}
{% if github_login_link or vsts_login_link or google_login_link %}
{% if google_login_link %}

{% endif %} {% if github_login_link %}

{% endif %} {% if vsts_login_link %}

{% endif %}
{% endif %}
{% 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 %}
{% csrf_token %}

Your ID is the slug either before or after the hostname. For example, acme is the slug in either {{ server_hostname }}/acme/ or acme.{{ server_hostname }}/.

{% endblock %}