57 lines
2.7 KiB
HTML
57 lines
2.7 KiB
HTML
{% extends "two_factor/_base_focus.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
<h1>{% block title %}{% trans "Enable Two-Factor Authentication" %}{% endblock %}</h1>
|
|
{% if wizard.steps.current == 'welcome' %}
|
|
<p>{% blocktrans %}You are about to take your account security to the
|
|
next level. Follow the steps in this wizard to enable two-factor
|
|
authentication.{% endblocktrans %}</p>
|
|
{% elif wizard.steps.current == 'method' %}
|
|
<p>{% blocktrans %}Please select which authentication method you would
|
|
like to use.{% endblocktrans %}</p>
|
|
{% elif wizard.steps.current == 'generator' %}
|
|
<p>{% blocktrans %}To start using a token generator, please use your
|
|
smartphone to scan the QR code below. For example, use andOTP or Google
|
|
Authenticator. Then, enter the token generated by the app.
|
|
{% endblocktrans %}</p>
|
|
<p><img src="{{ QR_URL }}" alt="QR Code" /></p>
|
|
{% elif wizard.steps.current == 'sms' %}
|
|
<p>{% blocktrans %}Please enter the phone number you wish to receive the
|
|
text messages on. This number will be validated in the next step. Make
|
|
sure to use the international number format, e.g. +43800093004.
|
|
{% endblocktrans %}</p>
|
|
{% elif wizard.steps.current == 'call' %}
|
|
<p>{% blocktrans %}Please enter the phone number you wish to be called on.
|
|
This number will be validated in the next step. {% endblocktrans %}</p>
|
|
{% elif wizard.steps.current == 'validation' %}
|
|
{% if challenge_succeeded %}
|
|
{% if device.method == 'call' %}
|
|
<p>{% blocktrans %}We are calling your phone right now, please enter the
|
|
digits you hear.{% endblocktrans %}</p>
|
|
{% elif device.method == 'sms' %}
|
|
<p>{% blocktrans %}We sent you a text message, please enter the token we
|
|
sent.{% endblocktrans %}</p>
|
|
{% endif %}
|
|
{% else %}
|
|
<p class="alert alert-warning" role="alert">{% blocktrans %}We've
|
|
encountered an issue with the selected authentication method. Please
|
|
go back and verify that you entered your information correctly, try
|
|
again, or use a different authentication method instead. If the issue
|
|
persists, contact the site administrator.{% endblocktrans %}</p>
|
|
{% endif %}
|
|
{% elif wizard.steps.current == 'yubikey' %}
|
|
<p>{% blocktrans %}To identify and verify your YubiKey, please insert a
|
|
token in the field below. Your YubiKey will be linked to your
|
|
account.{% endblocktrans %}</p>
|
|
{% endif %}
|
|
|
|
<form action="" method="post">{% csrf_token %}
|
|
{% include "two_factor/_wizard_forms.html" %}
|
|
|
|
{# hidden submit button to enable [enter] key #}
|
|
<div style="margin-left: -9999px"><input type="submit" value=""/></div>
|
|
|
|
{% include "two_factor/_wizard_actions.html" %}
|
|
</form>
|
|
{% endblock %}
|