{% extends "base/base-front-general.html.twig" %} {% block title %}{% trans into locale %}Account recovery{% endtrans %} | Cershop{% endblock %} {% block metadescription %}{% endblock %} {% block robots %}noindex,follow{% endblock %} {% block stylesheet %} {{ parent() }} {% endblock %} {% block contenido %}
{% if form_errors(form) %} {% endif %} {% for flash_message in app.session.flashbag.get('danger') %} {% endfor %} {% for flash_message in app.session.flashbag.get('success') %} {% endfor %}
{{ form_start(form, {'action':path('recuperarPassword.'~locale), 'method':'post', 'attr': {'class': 'formulario-login mb-4'}}) }}

{% trans into locale %}Account recovery{% endtrans %}

{{ form_label(form.usuario) }} {{ form_widget(form.usuario) }} {{ form_widget(form.save) }} {{ form_end(form) }}
{% endblock %} {% block javascript %} {{ parent() }} {% endblock %}