{% extends "base.html" %} {% load i18n %} {% load translations %} {% load authnames %} {% load crispy_forms_tags %} {% load icons %} {% load otp_webauthn %} {% block breadcrumbs %}
  • {% trans "Your profile" %}
  • {% trans "Register new authenticator app" %}
  • {% endblock %} {% block content %}
    {% csrf_token %}

    {% documentation_icon 'admin/auth' '2fa' right=True %} {% trans "Register new authenticator app" %}

    {% trans "Authenticator apps generate one-time passwords that are used as a second factor to verify your identity when prompted during sign-in." %}

    {% trans "Scan the QR code" %}
    {{ totp_svg }}

    {% trans "You can also enter the secret key manually:" %}

    {{ totp_key_b32 }}
    {{ form|crispy }}

    {% trans "Back to account settings" %}

    {% endblock %}