2020-05-17 10:13:04 +02:00
|
|
|
{% extends "single.html" %}
|
|
|
|
|
2022-06-29 11:28:26 +02:00
|
|
|
{% block title %}Recovery Code{% endblock %}
|
2020-05-17 10:13:04 +02:00
|
|
|
{% block single_content %}
|
2022-06-29 11:28:26 +02:00
|
|
|
|
2020-05-17 10:13:04 +02:00
|
|
|
<div class="card">
|
|
|
|
<div class="card-body p-6">
|
|
|
|
<form method="post">
|
|
|
|
{{ recovery_form.csrf_token }}
|
|
|
|
<div class="font-weight-bold mt-5">Code</div>
|
2022-06-29 11:28:26 +02:00
|
|
|
<div class="small-text">Please enter one of the recovery codes here</div>
|
2020-05-17 10:13:04 +02:00
|
|
|
{{ recovery_form.code(class="form-control", autofocus="true") }}
|
|
|
|
{{ render_field_errors(recovery_form.code) }}
|
|
|
|
<button class="btn btn-success mt-2">Submit</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-06-29 11:28:26 +02:00
|
|
|
{% endblock %}
|