mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 09:15:41 +00:00
32 lines
936 B
Django/Jinja
32 lines
936 B
Django/Jinja
{% extends "base.html.j2" %}
|
|
{% from "auth/_breadcrumbs.html.j2" import breadcrumbs with context %}
|
|
{% import "materialize/wtf.html.j2" as wtf %}
|
|
|
|
{% block page_content %}
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col s12">
|
|
<h1 id="title">{{ title }}</h1>
|
|
</div>
|
|
|
|
<div class="col s12 m4">
|
|
<p>After entering your email address you will receive instructions on how to reset your password.</p>
|
|
</div>
|
|
|
|
<div class="col s12 m8">
|
|
<div class="card">
|
|
<form method="POST">
|
|
<div class="card-content">
|
|
{{ form.hidden_tag() }}
|
|
{{ wtf.render_field(form.email, class_='validate', material_icon='email', type='email') }}
|
|
</div>
|
|
<div class="card-action right-align">
|
|
{{ wtf.render_field(form.submit, material_icon='send') }}
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock page_content %}
|