2022-06-29 11:28:26 +02:00
|
|
|
{% extends "default.html" %}
|
2020-05-17 10:04:54 +02:00
|
|
|
|
2022-06-29 11:28:26 +02:00
|
|
|
{% set active_page = "setting" %}
|
|
|
|
{% block title %}Recovery Codes{% endblock %}
|
2020-05-17 10:04:54 +02:00
|
|
|
{% block default_content %}
|
2022-06-29 11:28:26 +02:00
|
|
|
|
2020-05-17 10:04:54 +02:00
|
|
|
<div class="card">
|
|
|
|
<div class="card-body">
|
|
|
|
<h1 class="h3">Recovery codes</h1>
|
|
|
|
<p>
|
2020-08-05 12:28:20 +02:00
|
|
|
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.
|
2020-05-29 14:34:14 +02:00
|
|
|
Each code can only be used once, make sure to store them in a safe place.
|
2020-05-17 10:04:54 +02:00
|
|
|
</p>
|
2022-10-03 12:32:45 +02:00
|
|
|
<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>
|
2020-05-17 10:04:54 +02:00
|
|
|
<ul>
|
2022-10-03 12:32:45 +02:00
|
|
|
{% for recovery_code in recovery_codes %}<li>{{ recovery_code }}</li>{% endfor %}
|
2020-05-17 10:04:54 +02:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|