mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 00:07:22 +00:00
14 lines
460 B
HTML
14 lines
460 B
HTML
{% extends "layout.html" %}
|
|
{% from "_macros.html" import render_field_with_errors, render_field %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>{{ _fsdomain('Send password reset instructions') }}</h1>
|
|
<form action="{{ url_for_security('forgot_password') }}" method="POST" name="forgot_password_form">
|
|
{{ forgot_password_form.hidden_tag() }}
|
|
{{ render_field_with_errors(forgot_password_form.email) }}
|
|
{{ render_field(forgot_password_form.submit) }}
|
|
</form>
|
|
|
|
{% endblock %}
|