{% extends "two_factor/_base_focus.html" %} {% load i18n %} {% block content %} {% if cancel_url %}
{% endif %}{% blocktrans trimmed %}2FA is an extra layer of security used to make sure that people trying to gain access to an online account are who they say they are. We recommend using Authy or another authenticator app.{% endblocktrans %}
{% blocktrans trimmed %}Please contact {{ ORG_EMAIL }} if you have technical difficulty enabling 2FA.{% endblocktrans %}
{% elif wizard.steps.current == 'method' %}{% blocktrans trimmed %}Please select which authentication method you would like to use.{% endblocktrans %}
{% elif wizard.steps.current == 'generator' %}{% blocktrans trimmed %}2FA requires a verification code to pair your smartphone with your account. {% endblocktrans %}
{% blocktrans trimmed %}Step 1: Open the Authencator app on your phone and scan the QR code displayed below. {% endblocktrans %}
{% trans "Unable to scan the QR code? Try this link:" %}" {{ otpauth_url }}
{% blocktrans trimmed %}Step 2: Enter the 6-digit verification code generated by the app below.{% endblocktrans %}
{% elif wizard.steps.current == 'sms' %}{% blocktrans trimmed %}Please enter the phone number you wish to receive the text messages on. This number will be validated in the next step. {% endblocktrans %}
{% elif wizard.steps.current == 'call' %}{% blocktrans trimmed %}Please enter the phone number you wish to be called on. This number will be validated in the next step. {% endblocktrans %}
{% elif wizard.steps.current == 'validation' %} {% if challenge_succeeded %} {% if device.method == 'call' %}{% blocktrans trimmed %}We are calling your phone right now, please enter the digits you hear.{% endblocktrans %}
{% elif device.method == 'sms' %}{% blocktrans trimmed %}We sent you a text message, please enter the tokens we sent.{% endblocktrans %}
{% endif %} {% else %}{% blocktrans trimmed %}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 %}
{% endif %} {% elif wizard.steps.current == 'yubikey' %}{% blocktrans trimmed %}To identify and verify your YubiKey, please insert a token in the field below. Your YubiKey will be linked to your account.{% endblocktrans %}
{% endif %} {% endblock %}