{% extends "base.html" %} {% load allauth %} {% load i18n %} {% block head_title %} {% trans "Two-Factor Authentication" %} {% endblock head_title %} {% block content %}
{% trans "Enhance your account security with multi-factor authentication. Choose from authenticator apps, security keys, and recovery codes." %}
{% if authenticators.totp %} {% translate "Authentication using an authenticator app is active." %} {% else %} {% translate "An authenticator app is not active." %} {% endif %}
{% if authenticators.webauthn|length %} {% blocktranslate count count=authenticators.webauthn|length %}You have added {{ count }} security key.{% plural %}You have added {{ count }} security keys.{% endblocktranslate %} {% else %} {% translate "No security keys have been added." %} {% endif %}
{% if authenticators.recovery_codes %} {% blocktranslate count unused_count=unused_count %}There is {{ unused_count }} out of {{ total_count }} recovery codes available.{% plural %}There are {{ unused_count }} out of {{ total_count }} recovery codes available.{% endblocktranslate %} {% else %} {% translate "No recovery codes set up." %} {% endif %}