{% extends 'reset_password/base-reset.html.twig' %}
{% block title %}Reset Password{% endblock %}
{% block body %}
{% for flash_error in app.flashes('reset_password_error') %}
<div class="alert alert-danger mb-3" role="alert">{{ flash_error }}</div>
{% endfor %}
<div class="pb-3 fs-4" style="font-weight: 500;">Reset Password</div>
<div class="pb-3">
<small>
Enter your email address and we will send you a
link to reset your password.
</small>
</div>
{{ form_start(requestForm) }}
{{ form_row(requestForm.email) }}
<button class="btn btn-primary btn-lg btn-block mt-3">Send Password Reset</button>
{{ form_end(requestForm) }}
{% endblock %}