app-MAIL-temp/templates/dashboard/recovery_code.html

27 lines
872 B
HTML
Raw Normal View History

{% extends "default.html" %}
2020-05-17 10:04:54 +02:00
{% set active_page = "setting" %}
{% block title %}Recovery Codes{% endblock %}
2020-05-17 10:04:54 +02:00
{% block default_content %}
2020-05-17 10:04:54 +02:00
<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.
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>
<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>
{% for recovery_code in recovery_codes %}<li>{{ recovery_code }}</li>{% endfor %}
2020-05-17 10:04:54 +02:00
</ul>
</div>
</div>
{% endblock %}