{% extends "mfa/totp/base.html" %} {% load allauth i18n %} {% block head_title %} {% translate "Activate Authenticator App" %} {% endblock head_title %} {% block content %}

{% translate "Activate Authenticator App" %}

{% blocktranslate %}To protect your account with two-factor authentication, scan the QR code below with your authenticator app. Then, input the verification code generated by the app below.{% endblocktranslate %}

{% url 'mfa_activate_totp' as action_url %}
{% csrf_token %}
QR Code
{% translate "You can store this secret and use it to reinstall your authenticator app at a later time." %}
{% if form.code.errors %}
{% for error in form.code.errors %} {{ error }} {% endfor %}
{% endif %}
{% endblock content %}