2021-05-28 13:51:23 +00:00
|
|
|
{% extends "base.html.j2" %}
|
|
|
|
{% from "auth/_breadcrumbs.html.j2" import breadcrumbs with context %}
|
2021-05-27 11:05:46 +00:00
|
|
|
{% import "materialize/wtf.html.j2" as wtf %}
|
2020-02-07 14:21:59 +00:00
|
|
|
|
2019-07-09 14:59:04 +00:00
|
|
|
{% block page_content %}
|
2020-10-23 06:51:46 +00:00
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
2022-09-02 11:07:30 +00:00
|
|
|
<div class="col s12 m8 offset-m2">
|
2020-10-23 08:26:04 +00:00
|
|
|
<h1 id="title">{{ title }}</h1>
|
2020-10-23 06:51:46 +00:00
|
|
|
<p>After entering your email address you will receive instructions on how to reset your password.</p>
|
|
|
|
|
2022-09-02 11:07:30 +00:00
|
|
|
<form method="POST">
|
|
|
|
<div class="card-panel">
|
|
|
|
{{ form.hidden_tag() }}
|
|
|
|
{{ wtf.render_field(form.email, class_='validate', material_icon='email', type='email') }}
|
|
|
|
{{ wtf.render_field(form.submit, class_='width-100', material_icon='send') }}
|
|
|
|
</div>
|
|
|
|
</form>
|
2020-10-23 06:51:46 +00:00
|
|
|
</div>
|
2019-07-09 14:59:04 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-12-01 13:15:20 +00:00
|
|
|
{% endblock page_content %}
|