-
Christian Dresen authoredChristian Dresen authored
disable.html 545 B
{% extends "two_factor/_base_focus.html" %}
{% load i18n %}
{% load bootstrap %}
{% block content %}
<h1>{% block title %}{% trans "Disable Two-factor Authentication" %}{% endblock %}</h1>
<p>{% blocktrans %}You are about to disable two-factor authentication. This
compromises your account security, are you sure?{% endblocktrans %}</p>
<form method="post">
{% csrf_token %}
<table>{{ form|bootstrap }}</table>
<button class="btn btn-danger"
type="submit">{% trans "Disable" %}</button>
</form>
{% endblock %}