nopaque/app/templates/auth/reset_password_request.html.j2

22 lines
686 B
Plaintext
Raw Normal View History

{% extends "base.html.j2" %}
2024-05-04 12:41:40 +00:00
{% import "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 %}