eventcally/templates/security/two_factor_verify_password.html
Daniel Grams a9aa7acb85 i18n
2020-06-07 19:12:19 +02:00

14 lines
581 B
HTML

{% extends "layout.html" %}
{% from "_macros.html" import render_field_with_errors, render_field %}
{% block content %}
<h1>{{ _fsdomain("Please Enter Your Password") }}</h1>
<form action="{{ url_for_security("two_factor_verify_password") }}" method="POST"
name="two_factor_verify_password_form">
{{ two_factor_verify_password_form.hidden_tag() }}
{{ render_field_with_errors(two_factor_verify_password_form.password, placeholder="enter password") }}
{{ render_field(two_factor_verify_password_form.submit) }}
</form>
{% endblock %}