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

{% trans "Two-Factor Authentication" %}

{% blocktrans trimmed %}Your account is protected by two-factor authentication. Please enter an authenticator code:{% endblocktrans %}

{% url 'mfa_authenticate' as action_url %}
{% csrf_token %} {% include 'allauth/components/form.html' %} {% if "webauthn" not in MFA_SUPPORTED_TYPES %} {% endif %}
{% if "webauthn" in MFA_SUPPORTED_TYPES %}

{% trans "Alternative options" %}

{% csrf_token %} {% include 'allauth/components/form.html' with form=webauthn_form %} {{ js_data|json_script:"js_data" }} {% include "mfa/webauthn/snippets/scripts.html" %}
{% endif %}
{% endblock %}