{% extends "sentry/bases/auth.html" %} {% load crispy_forms_tags %} {% load i18n %} {% block title %}{% trans "Two-Factor Authentication" %} | {{ block.super }}{% endblock %} {% block auth_main %}

Two-Factor Authentication

Your account is protected with two-factor authentication. {% if interface.can_validate_otp %} To continue with the sign-in you need to provide the access code from your authenticator or a recovery code if you have one. {% endif %}

{% if activation %} {% if activation.type == 'error' or activation.type == 'warning' or activation.type == 'info' %}

{{ activation.message|safe }}

{% endif %} {% endif %}
{% csrf_token %} {{ form|as_crispy_errors }} {% block twofactor_form_body %} {% for field in form %} {{ field|as_crispy_field }} {% endfor %} {% if interface.interface_id == "sms" %} Resend Code {% endif %} {% endblock %} {% block twofactor_submit %}
{% endblock %} {% if other_interfaces %}

Other authentication methods:

{% endif %}
{% endblock %}