Ai_Admin/templates/mfa/webauthn/authenticator_confirm_delete.html
2024-09-20 04:29:09 +00:00

19 lines
676 B
HTML
Executable File

{% extends "mfa/webauthn/base.html" %}
{% load i18n %}
{% load allauth %}
{% block content %}
{% element h1 %}
{% trans "Remove Security Key" %}
{% endelement %}
<p>{% blocktranslate %}Are you sure you want to remove this security key?{% endblocktranslate %}</p>
{% url 'mfa_remove_webauthn' pk=authenticator.pk as action_url %}
{% element form method="post" action=action_url no_visible_fields=True %}
{% slot actions %}
{% csrf_token %}
{% element button tags="danger" type="submit" %}
{% translate "Remove" %}
{% endelement %}
{% endslot %}
{% endelement %}
{% endblock %}