{% extends 'base.html.twig' %}
{% block title %}Reset your 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="row">
<div class="col s10 offset-s1 l6 offset-l3 card z-depth-3" style="border-radius: 20px; margin-top: 5%">
<img class="center-align center center-block " src="{{ asset('img/login.png') }}" style="max-height: 70px; margin-top: 20px" alt="">
<h3 class="center">Reset your password</h3>
{{ form_start(requestForm) }}
{{ form_row(requestForm.email) }}
<div>
<small>
Enter your email address and we will send you a
link to reset your password.
</small>
</div>
<button class="btn btn-primary center-align center center-block col s8 offset-s2 " style="margin-bottom: 20px; margin-top: 20px" >Send password reset email <i class="fa fa-sync right prefix"></i></button>
{{ form_end(requestForm) }}
<div class="col s12 " style="margin-left:-20px; margin-bottom: 20px; margin-top: -20px">
<p class="right-align">Or <a href="{{ path('app_login') }}">Sign In</a>
</p>
</div>
</div>
</div>
{% endblock %}