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

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

{% if forms.u2f %}

{% 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 forms.totp %}

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

{% csrf_token %} {{ forms.totp.as_p }}
{% endif %} {% if forms.backup %}

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

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