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