mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 08:09:37 +00:00
14 lines
470 B
HTML
14 lines
470 B
HTML
{% extends "layout.html" %}
|
|
{% from "_macros.html" import render_field_with_errors, render_field %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>{{ _fsdomain('Resend confirmation instructions') }}</h1>
|
|
<form action="{{ url_for_security('send_confirmation') }}" method="POST" name="send_confirmation_form">
|
|
{{ send_confirmation_form.hidden_tag() }}
|
|
{{ render_field_with_errors(send_confirmation_form.email) }}
|
|
{{ render_field(send_confirmation_form.submit) }}
|
|
</form>
|
|
|
|
{% endblock %}
|