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

{% trans "Edit Security Key" %}

{% trans "Update the details for your security key." %}

{% url 'mfa_edit_webauthn' as action_url %}
{% csrf_token %} {% for field in form %} {% if field.is_hidden %} {{ field }} {% else %}
{{ field.as_widget(attrs={"class":"form-control"}) }} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% if field.errors %}
{% for error in field.errors %} {{ error }} {% endfor %}
{% endif %}
{% endif %} {% endfor %}
{% trans "Back" %}
{% endblock %}