{% extends "mfa/webauthn/base.html" %} {% load i18n %} {% load static %} {% load allauth %} {% block content %}

{% trans "Add Security Key" %}

{% trans "Add a security key to enhance your account security." %}

{% url 'mfa_add_webauthn' as action_url %}
{% csrf_token %} {% for field in form %} {% if not field.is_hidden %}
{{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% if field.errors %}
{% for error in field.errors %} {{ error }} {% endfor %}
{% endif %}
{% else %} {{ field }} {% endif %} {% endfor %}
{% include "mfa/webauthn/snippets/scripts.html" %} {{ js_data|json_script:"js_data" }} {% endblock %}