{% extends 'base.html' %} {% block body %} {% if totp_methods or webauthn_methods %}

Two-factor authentication is currently enabled. Delete all registered methods to disable it.

{% else %}

Two-factor authentication is currently disabled. Setup an authentication method below to enable it.

{% endif %}

Authenticator Apps

Use an authenticator application on your mobile device as a second factor.

The authenticator app generates a 6-digit one-time code each time you login. Compatible apps are freely available for most phones.

{% for method in totp_methods %} {% endfor %} {% if not totp_methods %} {% endif %}
Name Registered On
{{ method.name }} {{ method.created.strftime('%b %d, %Y') }} Delete
No authenticator apps registered yet

U2F and FIDO2 Devices

Use an U2F or FIDO2 compatible hardware security key as a second factor.

U2F and FIDO2 devices are not supported by all browsers and can be particularly difficult to use on mobile devices. It is strongly recommended to also setup an authenticator app to be able to login on all browsers.

{% for method in webauthn_methods %} {% endfor %} {% if not webauthn_methods %} {% endif %}
Name Registered On
{{ method.name }} {{ method.created.strftime('%b %d, %Y') }} Delete
No devices registered yet
{% endblock %}