mirror of
https://github.com/simple-login/app.git
synced 2024-11-16 08:58:30 +01:00
cb7868bdca
* Add DJlint configuration * Initial reformat for djlint * Add template linting to CI * Add explanation for HTML template checks in CONTRIBUTING.md
19 lines
537 B
HTML
19 lines
537 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">
|
|
<button class="btn btn-danger mt-2">Disable TOTP</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|