Manage user account
This commit is contained in:
parent
749e179c32
commit
5adc01baff
4 changed files with 297 additions and 0 deletions
43
views/account_totp.html
Normal file
43
views/account_totp.html
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
{% extends "layouts/main.html" %}
|
||||
|
||||
{% block main %}
|
||||
<div class="container mt-4">
|
||||
<div class="mb-4">
|
||||
<nav>
|
||||
<ol class="breadcrumb">
|
||||
<li class="breadcrumb-item"><a href="/">Accueil</a></li>
|
||||
<li class="breadcrumb-item active">Gérer multifacteur (TOTP)</li>
|
||||
</ol>
|
||||
</nav>
|
||||
<hr>
|
||||
</div>
|
||||
|
||||
<form id="user" method="post">
|
||||
|
||||
<div class="mb-3">
|
||||
<input
|
||||
type="checkbox"
|
||||
class="form-check-input me-2"
|
||||
id="reset_totp"
|
||||
name="reset_totp"
|
||||
required
|
||||
>
|
||||
<label for="reset_totp" class="form-label">
|
||||
Réinitialiser le double facteur (TOTP)
|
||||
</label>
|
||||
<div class="form-text">
|
||||
Si la case est cochée, vous devrez effectuer
|
||||
un nouvel enrollement TOTP.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mt-4">
|
||||
<button class="btn btn-primary" type="submit">
|
||||
<i class="me-1 bi-floppy"></i>
|
||||
Enregistrer
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue