2022-06-29 11:28:26 +02:00
|
|
|
{% extends "default.html" %}
|
2019-12-29 15:10:40 +01:00
|
|
|
|
2022-06-29 11:28:26 +02:00
|
|
|
{% set active_page = "setting" %}
|
|
|
|
{% block title %}Cancel MFA{% endblock %}
|
2019-12-29 15:10:40 +01:00
|
|
|
{% block default_content %}
|
2022-06-29 11:28:26 +02:00
|
|
|
|
2020-05-11 23:22:06 +02:00
|
|
|
<div class="card">
|
|
|
|
<div class="card-body">
|
2020-05-27 19:23:33 +02:00
|
|
|
<h1 class="h2">Two Factor Authentication</h1>
|
2020-08-05 12:30:56 +02:00
|
|
|
<div>
|
|
|
|
Disabling TOTP reduces the security of your account, please make sure to re-activate it later
|
|
|
|
or use WebAuthn (FIDO).
|
|
|
|
</div>
|
|
|
|
<form method="post">
|
2023-01-12 12:34:47 +01:00
|
|
|
{{ csrf_form.csrf_token }}
|
2020-08-05 12:30:56 +02:00
|
|
|
<button class="btn btn-danger mt-2">Disable TOTP</button>
|
2020-05-11 23:22:06 +02:00
|
|
|
</form>
|
|
|
|
</div>
|
2019-12-29 15:10:40 +01:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|