mirror of
https://github.com/simple-login/app.git
synced 2024-11-01 03:21:01 +01:00
faeddc365c
* Recovery codes can only be shown after adding a 2FA code and cannot be seen afterwards * Added recovery codes fix * Updated models and script * Formatting * Format * Added base code * Updated wording * Set the config by default Co-authored-by: Adrià Casajús <adria.casajus@proton.ch>
27 lines
872 B
HTML
27 lines
872 B
HTML
{% extends "default.html" %}
|
|
|
|
{% set active_page = "setting" %}
|
|
{% block title %}Recovery Codes{% endblock %}
|
|
{% block default_content %}
|
|
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<h1 class="h3">Recovery codes</h1>
|
|
<p>
|
|
In the event you lose access to your authenticator app you can use one of these recovery codes to gain access to
|
|
your account again.
|
|
Each code can only be used once, make sure to store them in a safe place.
|
|
</p>
|
|
<p class="alert alert-warning">
|
|
<strong>
|
|
If you had recovery codes before, they have been invalidated.
|
|
Store these codes in a safe place. You won't be able to retrieve them again!
|
|
</strong>
|
|
</p>
|
|
<ul>
|
|
{% for recovery_code in recovery_codes %}<li>{{ recovery_code }}</li>{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|