mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 21:27:10 +01:00
d874acfe2c
* Fix: Add CSRF validation to api key management page * Added csrf to subdomain creation * Added CSRF to totp cancel Co-authored-by: Adrià Casajús <adria.casajus@proton.ch>
21 lines
572 B
HTML
21 lines
572 B
HTML
{% extends "default.html" %}
|
|
|
|
{% set active_page = "setting" %}
|
|
{% block title %}Cancel MFA{% endblock %}
|
|
{% block default_content %}
|
|
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<h1 class="h2">Two Factor Authentication</h1>
|
|
<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">
|
|
{{ csrf_form.csrf_token }}
|
|
<button class="btn btn-danger mt-2">Disable TOTP</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|