mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 17:25:44 +00:00
22 lines
686 B
Django/Jinja
22 lines
686 B
Django/Jinja
{% extends "base.html.j2" %}
|
|
{% import "wtf.html.j2" as wtf %}
|
|
|
|
{% block page_content %}
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col s12 m8 offset-m2">
|
|
<h1 id="title">{{ title }}</h1>
|
|
<p>After entering your email address you will receive instructions on how to reset your password.</p>
|
|
|
|
<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>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock page_content %}
|