{% extends "account/base.html" %} {% load i18n %} {% load form_filters %} {% block head_title %}{% trans "Two-Factor Authentication Backup Tokens" %}{% endblock %} {% block content %}

{% trans "Two-Factor Authentication Backup Tokens" %}

{% if backup_tokens %} {% if reveal_tokens %}
    {% for token in backup_tokens %}
  • {{ token.token }}
  • {% endfor %}
{% else %}

{% trans 'Backup tokens have been generated, but are not revealed here for security reasons. Press the button below to generate new ones.' %}

{% endif %} {% else %}

{% trans 'No tokens. Press the button below to generate some.' %}

{% endif %}
{% csrf_token %}
Disable Two Factor
{% endblock %}