{% extends "sentry/bases/auth.html" %} {% load crispy_forms_tags %} {% load i18n %} {% load sentry_avatars %} {% block title %}{% trans "Confirm Identity" %} | {{ block.super }}{% endblock %} {% block auth_main %} {% if existing_user %}
{% csrf_token %}

We found an existing account for {{ identity.email }}.

Please confirm your credentials:

{{ login_form|as_crispy_errors }} {% for field in login_form %} {{ field|as_crispy_field }} {% endfor %}
{% trans "Lost your password?" %}
{% else %}
{% csrf_token %}

We've identified you as {{ identity.email }}.

We'll go ahead and create a new account for you with this email address.

{% endif %} {% endblock %}