{% extends 'cp/layout/anonymous-area.html.twig' %}
{% block title %}Reset your password{% endblock %}
{% set page_title = 'Reset your password' %}
{% block fos_user_content %}
{% for flashError in app.flashes('reset_password_error') %}
<div class="alert alert-danger" role="alert">{{ flashError }}</div>
{% endfor %}
<h1>Reset your password</h1>
{{ form_start(requestForm) }}
{{ form_row(requestForm.email) }}
<div class="col-sm-2"></div>
<p class="col-sm-10">
<small>
Enter your email address and we will send you a
link to reset your password.
</small>
</p>
<div class="section mn text-center">
<button class="btn btn-primary mt5">Send password reset email</button>
</div>
{{ form_end(requestForm) }}
{% endblock %}