{% load i18n %}

{% trans "Security keys" %}

{% blocktrans trimmed %} Register your security key and use it as a 2FA method or for password-less login. {% endblocktrans %}

{% blocktrans trimmed %} When using a U2F security key such as yubikeys the initial prompt may show other device-internal keys first (such as fingerprint scanners and security pins). {% endblocktrans %}

{% blocktrans trimmed %} If your yubikey is plugged in but does not show up in the list, cancel the initial prompt and a new prompt for your yubikey should appear afterwards. {% endblocktrans %}

{% trans "Name" %}
{% for key in user.webauthn_security_keys.all %}
{{ key.name }} {% if key.passwordless_login%}({% trans "passwordless-login" %}){% endif %}
{% endfor %}
{% trans "Register security key" %}
{% trans "Password-less login" %}