{% extends 'auth/base.html.twig' %} {% trans_default_domain 'security' %} {% set t_root = 'auth.reset-password' %} {% block title %}{{ (t_root ~ '.title')|trans }}{% endblock %} {% block page_title %}{{ (t_root ~ '.title')|trans }}{% endblock %} {% block body %}
{% for flash_error in app.flashes('reset_password_error') %}
{{ flash_error }}
{% endfor %}
{{ form_start(form) }}
{{ form_errors(form) }}
{# {{ form_label(form.email, t_root ~ '.fields.@email.label', { 'label_attr': {'class': 'form-label'} }) }} #}
{{ form_errors(form.email) }}
{{ form_widget(form.email, { 'attr': {'class': 'form-control', 'placeholder': t_root ~ '.fields.@email.placeholder'} }) }} {{ (t_root ~ '.fields.@email.help')|trans }}
{{ form_end(form) }}
{% endblock %}