{% extends "base.html.j2" %} {% from "auth/_breadcrumbs.html.j2" import breadcrumbs with context %} {% import "materialize/wtf.html.j2" as wtf %} {% block page_content %}

{{ title }}

Enter a new password and confirm it! After that, the entered password is your new one!

{{ form.hidden_tag() }} {{ wtf.render_field(form.password) }} {{ wtf.render_field(form.password_confirmation) }}
{{ wtf.render_field(form.submit, material_icon='send') }}
{% endblock page_content %}