{% extends 'layouts/app.twig' %} {% import 'macros/base.twig' as m %} {% import 'macros/form.twig' as f %} {% block title %}{{ __('Password recovery') }}{% endblock %} {% block content %}

{{ __('Password recovery') }}

{% include 'layouts/parts/messages.twig' %}
{% block row_content %}
{{ csrf() }} {{ __('We will send you an e-mail with a password recovery link. Please use the email address you used for registration.') }} {{ f.input('email', __('E-Mail'), 'email', {'required': true}) }} {{ f.submit(__('Recover')) }}
{% endblock %}
{% endblock %}