Files
GNX-mailEnterprise/venv/lib/python3.12/site-packages/allauth/templates/mfa/authenticate.html
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03:00

19 lines
607 B
HTML

{% extends "account/base.html" %}
{% load i18n %}
{% block head_title %}
{% trans "Sign In" %}
{% endblock head_title %}
{% block content %}
<h1>{% trans "Two-Factor Authentication" %}</h1>
<p>
{% blocktranslate %}Your account is protected by two-factor authentication. Please enter an authenticator code:{% endblocktranslate %}
</p>
<form class="authenticate"
method="POST"
action="{% url 'mfa_authenticate' %}">
{% csrf_token %}
{{ form.as_p }}
<button type="submit">{% trans "Sign In" %}</button>
</form>
{% endblock content %}