{% extends 'guest_layout.html.twig' %}
{% block title %}Set a new Password{% endblock %}
{% block body %}
{% for flash_error in app.flashes('reset_password_error') %}
<div class="alert alert-danger" role="alert">{{ flash_error }}</div>
{% endfor %}
<div class="d-grid gap-2 col-6 mx-auto">
<div>
<small>
Enter your email address and we will send you a link to set a new password.
</small>
</div>
{{ form_start(requestForm) }}
{{ form_row(requestForm.email) }}
<button class="btn btn-warning btn-block btn-lg" style="margin-top: 15px;">Submit</button>
{{ form_end(requestForm) }}
</div>
{% endblock %}