{% extends 'Global/layout.html.twig' %} {% set pagetitle = 'Reset your password'|trans %} {% block title %}{{pagetitle}}{% endblock %} {% block content %}

{{ pagetitle }}

{{ form_start(requestForm, {'attr': {'novalidate': 'novalidate'}}) }}
{{ form_widget(requestForm.email) }} {{ form_errors(requestForm.email) }}
{{ form_help(requestForm.email) }} {% if envFileAccessor.getSetting('GOOGLE_RECAPTCHA_ENABLED') == 1 %}

{{ "Please validate that you are not a robot"|trans({}, 'messages') }}

{% endif %}
{{ form_end(requestForm) }}
{% endblock %} {% block javascripts %} {% if envFileAccessor.getSetting('GOOGLE_RECAPTCHA_ENABLED') == '1' %} {% endif %} {% endblock %}