mirror of
https://github.com/Labelbase/Labelbase.git
synced 2026-08-16 13:01:02 +02:00
15 lines
560 B
HTML
15 lines
560 B
HTML
{% extends "_base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% load bootstrap %}
|
|
{% block content %}
|
|
<h2 style="padding-top: 1em;">{% block title %}{% trans "Disable Two-factor Authentication" %}{% endblock %}</h2>
|
|
<p>{% blocktrans trimmed %}You are about to disable two-factor authentication. This
|
|
weakens 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 %}
|