{% extends 'base.html' %} {% load i18n %} {% block head %} {{ wizard.form.media }} {% endblock %} {% block content %}

Enable Two-Factor Authorization

{% if wizard.steps.current == 'welcome' %}

You are about to take your account security to the next level. Follow the steps in this wizard to enable two-factor authorization.

{% elif wizard.steps.current == 'method' %}

Please select which authentication method you would like to use.

{% elif wizard.steps.current == 'generator' %}

To start using a token generator, please use your smartphone to scan the QR code below. For example, use Google Authenticator. Then, enter the token generated by the app.

QR Code

{% elif wizard.steps.current == 'sms' %}

Please enter the phone number you wish to receive the text messages on. This number will be validated in the next step.

{% elif wizard.steps.current == 'sms-verify' %}

A text message has been sent, please enter the authorization code displayed on your phone.

{% elif wizard.steps.current == 'call' %}

Please enter the phone number you wish to be called on. This number will be validated in the next step.

{% elif wizard.steps.current == 'sms-verify' %}

Sorry, this is not working yet.

{% endif %}
{% csrf_token %} {{ wizard.management_form }} {% if wizard.form.forms %} {{ wizard.form.management_form }} {% for form in wizard.form.forms %} {{ form }} {% endfor %} {% else %} {{ wizard.form }} {% endif %}
{# hidden submit button to enable [enter] key #}
{% if wizard.steps.prev %} {% endif %}
{% endblock %}