mirror of
https://github.com/wassname/flask-security.git
synced 2026-07-05 17:30:14 +08:00
9 lines
473 B
HTML
9 lines
473 B
HTML
{% from "security/_macros.html" import render_field_with_errors, render_field %}
|
|
{% include "security/_messages.html" %}
|
|
<h1>Resend confirmation instructions</h1>
|
|
<form action="{{ url_for_security('send_confirmation') }}" method="POST" name="reset_confirmation_form">
|
|
{{ reset_confirmation_form.hidden_tag() }}
|
|
{{ render_field_with_errors(reset_confirmation_form.email) }}
|
|
{{ render_field(reset_confirmation_form.submit) }}
|
|
</form>
|
|
{% include "security/_menu.html" %} |