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

24 lines
758 B
Plaintext
Raw Normal View History

{% extends "base.html.j2" %}
{% from "auth/_breadcrumbs.html.j2" import breadcrumbs with context %}
{% 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">
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>
<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
2022-09-02 11:07:30 +00:00
<form method="POST">
<div class="card-panel">
{{ form.hidden_tag() }}
{{ wtf.render_field(form.password) }}
{{ wtf.render_field(form.password_2) }}
{{ wtf.render_field(form.submit, class_='width-100', material_icon='send') }}
</div>
</form>
2020-10-23 06:51:46 +00:00
</div>
2019-07-08 09:08:49 +00:00
</div>
</div>
2021-12-01 13:15:20 +00:00
{% endblock page_content %}