{% load static %} {% block head %} {% url 'totp_recheck' as totp_recheck %} {{ totp_recheck|json_script:"totp_recheck" }} {{ csrf_token|stringformat:"s"|json_script:"csrf_token" }} {{ mode|json_script:"mode" }} {% endblock %} {% block content %}
One Time Password
{% csrf_token %} {% if invalid %}
Sorry, The provided token is not valid.
{% endif %}
{% if mode == "auth" %}
Welcome back {{ request.session.base_username }}
Not me
{% endif %}

Enter the 6-digits on your authenticator

{% if request.session.mfa_methods|length > 1 %} Select Another Method {% endif %}
{% include "modal.html" %} {% endblock %}