mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 08:09:37 +00:00
27 lines
1.2 KiB
HTML
27 lines
1.2 KiB
HTML
{% extends "layout.html" %}
|
|
{% from "_macros.html" import render_field_with_errors, render_field %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>{{ _fsdomain("Two-factor Authentication") }}</h1>
|
|
<h2>{{ _fsdomain("Please enter your authentication code") }}</h2>
|
|
<form action="{{ url_for_security("two_factor_token_validation") }}" method="POST"
|
|
name="two_factor_verify_code_form">
|
|
{{ two_factor_verify_code_form.hidden_tag() }}
|
|
{{ render_field_with_errors(two_factor_verify_code_form.code, placeholder="enter code") }}
|
|
{{ render_field(two_factor_verify_code_form.submit) }}
|
|
</form>
|
|
<form action="{{ url_for_security("two_factor_rescue") }}" method="POST" name="two_factor_rescue_form">
|
|
{{ two_factor_rescue_form.hidden_tag() }}
|
|
{{ render_field_with_errors(two_factor_rescue_form.help_setup) }}
|
|
{% if problem=="lost_device" %}
|
|
<p>{{ _fsdomain("The code for authentication was sent to your email address") }}</p>
|
|
{% endif %}
|
|
{% if problem=="no_mail_access" %}
|
|
<p>{{ _fsdomain("A mail was sent to us in order to reset your application account") }}</p>
|
|
{% endif %}
|
|
{{ render_field(two_factor_rescue_form.submit) }}
|
|
</form>
|
|
|
|
{% endblock %}
|