{% extends "mfa/base_entrance.html" %} {% load i18n %} {% load static %} {% load allauth %} {% block head_title %} {% trans "Create Passkey" %} {% endblock head_title %} {% block content %}

{% trans "Create Passkey" %}

{% blocktranslate %}You are about to create a passkey for your account. As you can add additional keys later on, you can use a descriptive name to tell the keys apart.{% endblocktranslate %}

{% url 'mfa_signup_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 "Cancel" %}
{% csrf_token %}
{% include "mfa/webauthn/snippets/scripts.html" %} {{ js_data|json_script:"js_data" }}
{% endblock %}