{% extends "base.html" %} {% load i18n %} {% load allauth %} {% load allauth static %} {% block head_title %} {% trans "Sign In" %} {% endblock head_title %} {% block content %}

{% trans "Two-Factor Authentication" %}

{% blocktranslate %}Your account is protected by two-factor authentication. Please enter an authenticator code:{% endblocktranslate %}

{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %} {% url 'mfa_authenticate' as action_url %}
{% csrf_token %} {% for field in form %} {% if field.is_hidden %} {{ field }} {% else %}
{{ field.as_widget(attrs={"class":"form-control form-control-lg text-center"}) }} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% if field.errors %}
{% for error in field.errors %} {{ error }} {% endfor %}
{% endif %}
{% endif %} {% endfor %}
{% if "webauthn" not in MFA_SUPPORTED_TYPES %}
{% endif %} {% if "webauthn" in MFA_SUPPORTED_TYPES %}
{% translate "Alternative options" %}
{% csrf_token %} {% for field in webauthn_form %} {{ field }} {% endfor %}
{{ js_data|json_script:"js_data" }} {% include "mfa/webauthn/snippets/scripts.html" %} {% endif %}
{% csrf_token %}
{% endblock content %}