{% extends 'auth/master.twig' %} {% from 'macros.twig' import container_title %} {% from '_layout/input.twig' import input_hidden, input_csrf, input_text %} {% set title = 'Resetting password' %} {% block content %}
{{ container_title(' Resetting password for ' ~ password_user.name) }} {{ input_hidden('reset[user]', password_user.id) }} {{ input_csrf() }} {% if password_notices|length > 0 %}
{% for notice in password_notices %}

{{ notice }}

{% endfor %}
{% else %}

A verification code should've been sent to your e-mail address.

{% endif %} {% if password_verification|length == 12 %} {{ input_hidden('reset[verification]', password_verification) }} {% else %} {% endif %}
Log in
{% endblock %}