{% extends "wagtailadmin/base.html" %} {% load i18n wagtailadmin_tags %} {% block titletag %}{% trans "Sign in" %}{% endblock %} {% block bodyclass %}login{% endblock %} {% block furniture %}

{% block branding_login %}{% trans "Enter your two-factor authentication code" %}{% endblock %}

{# Always show messages div so it can be appended to by JS #} {% if messages or form.errors %} {% endif %}

{% translate "Open your authenticator app (Aegis, Bitwarden, Google Authenticator, Microsoft Authenticator...) to get the code to enter below." %}

{% block above_login %}{% endblock %}
{% block login_form %} {% csrf_token %} {% url 'wagtailadmin_home' as home_url %} {% block fields %} {% translate "Security code" as label_otp %} {% translate "Please enter the 6-digit code displayed in your application." as help_otp %} {% formattedfield field=form.otp_token label_text=label_otp help_text=help_otp %} {% block extra_fields %} {% for field_name, field in form.extra_fields %} {% formattedfield field=field %} {% endfor %} {% endblock extra_fields %} {% endblock %} {% endblock %}
{% block submit_buttons %} {% endblock %}
{% block below_login %}{% endblock %} {% block branding_logo %} {% endblock %}
{% endblock %}