{% extends "u2f/base.html" %} {% load argonauts %} {% load i18n %} {% block content %} {{ block.super }}

{% trans 'Please verify one of the authentication methods below.' %}

{% if user.u2f_keys.exists %}

{% trans 'Insert your Security Key' %}

{% blocktrans %} If your Security Key has a button, tap it.
If it doesn't, remove and re-insert it. {% endblocktrans %}

{% csrf_token %} {{ forms.u2f.as_p }}
{% endif %} {% if user.totp_devices.exists %}

{% trans 'Enter an Authenticator (TOTP) Token:' %}

{% csrf_token %} {{ forms.totp.as_p }}
{% endif %} {% if user.backup_codes.exists %}

{% trans 'Use a backup code:' %}

{% csrf_token %} {{ forms.backup.as_p }}
{% endif %} {% endblock %}