{% extends "two_factor_auth/_base_focus.html" %} {% load i18n %} {% block content %}

{% block title %}{% trans "Login" %}{% endblock %}

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

{% blocktrans %}Enter your credentials.{% endblocktrans %}

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

{% blocktrans %}Please enter the tokens generated by your token generator.{% endblocktrans %}

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

{% blocktrans %}Use this form for entering backup token for logging in. This token has been generated for you to print and keep safe. Please enter the backup token to login to your account.{% endblocktrans %}

{% endif %}
{% csrf_token %} {% include "two_factor_auth/_wizard_forms.html" %} {# hidden submit button to enable [enter] key #}
{% if backup_tokens %}

{% trans "As a last resort, you can use a backup token:" %}

{% endif %} {% include "two_factor_auth/_wizard_actions.html" %}
{% endblock %}