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-08 09:08:49 +00:00
|
|
|
{% block page_content %}
|
2020-10-23 06:51:46 +00:00
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col s12">
|
2020-10-23 08:26:04 +00:00
|
|
|
<h1 id="title">{{ title }}</h1>
|
2020-10-23 06:51:46 +00:00
|
|
|
</div>
|
2019-07-10 07:47:29 +00:00
|
|
|
|
2020-10-23 06:51:46 +00:00
|
|
|
<div class="col s12 m4">
|
2020-10-23 08:26:04 +00:00
|
|
|
<p>Enter a new password and confirm it! After that, the entered password is your new one!</p>
|
2020-10-23 06:51:46 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col s12 m8">
|
|
|
|
<div class="card">
|
|
|
|
<form method="POST">
|
|
|
|
<div class="card-content">
|
2020-11-13 09:01:51 +00:00
|
|
|
{{ form.hidden_tag() }}
|
|
|
|
{{ wtf.render_field(form.password, data_length='128') }}
|
|
|
|
{{ wtf.render_field(form.password_confirmation, data_length='128') }}
|
2020-10-23 06:51:46 +00:00
|
|
|
</div>
|
|
|
|
<div class="card-action right-align">
|
2020-11-13 09:01:51 +00:00
|
|
|
{{ wtf.render_field(form.submit, material_icon='send') }}
|
2020-10-23 06:51:46 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
2019-07-09 12:13:56 +00:00
|
|
|
</div>
|
2020-10-23 06:51:46 +00:00
|
|
|
</div>
|
2019-07-08 09:08:49 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|