{% extends 'base.html.twig' %} {% block title %}{{ 'lang.passwortReset'|trans|default('Reset your password') }}{% endblock %} {% block footer %}{% endblock %} {% block body %}
{# Flash сообщения #} {% include '_components/flash_messages.html.twig' %} {% for flash_error in app.flashes('reset_password_error') %}

{{ flash_error }}

{% endfor %}
{# Заголовок #}

{{ 'lang.passwortReset'|trans|default('Reset your password') }}

{{ 'lang.passwordResetEnterEmail'|trans|default('Enter your email address, and we will send you a link to reset your password.') }}

{# Форма #} {{ form_start(requestForm, {'attr': {'class': 'space-y-6'}}) }} {# Поле email #}
{{ form_widget(requestForm.email, {'attr': { 'class': 'w-full pl-11 pr-4 py-2.5 bg-white border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-secondary focus:border-secondary transition-all duration-200 text-gray-900 placeholder-gray-400 text-sm', 'placeholder': 'lang.email'|trans }}) }}
{% if requestForm.email.vars.errors|length > 0 %}
{% for error in requestForm.email.vars.errors %}
{{ error.message }}
{% endfor %}
{% endif %}
{# Кнопка отправки #} {# Ссылка на вход #} {{ form_end(requestForm) }}
{% endblock %}