{% extends "registration/login.html" %} {% load i18n %} {% load static_url %} {% block html_extra %}data-qa-id="two_factor_sync"{% endblock %} {% block content %}
{% if rpconfig %} {% include "widgets/trusted_rp.html" %} {% endif %}

{% blocktrans %}Enter three consecutive verification codes{% endblocktrans %}

{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors|join:"" }}
{% endif %} {% for field in form %}

{{ field }} {% if field.errors %} {{ field.errors|join:"" }} {% endif %}

{% endfor %}

{% blocktrans %} The three one-time passwords have to be consecutive; use one for each field. {% endblocktrans %}

{% blocktrans %}To get a new one-time password on your mobile device or keyfob, press the 'refresh' button.{% endblocktrans %}

{% if next %}{% endif %} {% if token %}{% trans "or" %} {% include "common/cancel_link.html" %}{% endif %}
 

{% trans "Report a lost or stolen device" %}

{% blocktrans with "twofactor_faq"|static_url as 2FFAQ %} 2-Factor Auth FAQ {% endblocktrans %}

{% include "common/sync_2fa_javascript.html" %}
{% endblock %}