{% extends "base.html" %} {% block content %}

Two-factor authentication status

Your account is {{ "" if has_mfa else "not" }} configured to use two-factor authentication.

IRRD supports Webauthn security tokens (SoloKeys, YubiKey, Passkey, etc) and one time password (TOTP).

Security tokens

{% for webauthn in webauthns %} {% endfor %}
Name Added Last used
{{ webauthn.name }} {{ webauthn.created|datetime_format }} {{ webauthn.last_used|datetime_format }} [Remove]
Register a new security token

One time password (TOTP)

Security tokens are safer than one time passwords.

{% if has_totp %}

One time password is enabled for your account.

Remove one time password {% else %}

One time password is not enabled for your account.

Enable one time password {% endif %} {% endblock %}