{% extends 'base.html.twig' %}
{% block title %}Hello DefaultController!{% endblock %}
{% block body %}
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v4.7.0/css/all.css">
<div style="min-height:70%; min-height:70vh; display:flex; align-items:center; width:100%">
<div class="container bg-light border border-success rounded" style="max-width: 400px;">
<article class="card-body mx-auto" >
<div class="d-flex align-items-center justify-content-center">
<i class="fa fa-paper-plane fa-3x"></i>
</div>
<h4 class="card-title mt-3 text-center">Reset your password</h4>
<div class="text-center">
{% for flash_error in app.flashes('reset_password_error') %}
<div class="alert alert-danger" role="alert">{{ flash_error }}</div>
{% endfor %}
{{ 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">Send password reset email</button>
{{ form_end(requestForm) }}
</div>
</article>
</div>
</div>
{% endblock %}