{% extends 'concawe/page/authentication.twig' %}
{% block title %}Forgot password{% endblock %}
{% block flash %}{% endblock %}
{% block auth %}
<div id="flash">
{% for label, messages in app.flashes %}
{% for message in messages %}
<p class="alert alert-{{ label }}">
{{ message }}
</p>
{% endfor %}
{% endfor %}
</div>
<p class="alert alert-warning text-center">
Fill in your e-mail address, and we will send you an e-mail containing a link allowing you to choose a
new password.
</p>
{{ form_start(form) }}
{{ form_row(form._token) }}
{{ form_row(form.email) }}
<div class="row align-items-center">
<div class="col-12 col-sm-4">
<p class="text-center text-sm-left">
<a href="{{ url('security.sign-in') }}" class="small">Cancel</a>
</p>
</div>
<div class="col-xs-12 col-sm-8">
<p class="text-center text-sm-right">
<button type="submit" class="btn btn-primary">Continue <em class="fa fa-lock"></em></button>
</p>
</div>
</div>
{{ form_end(form) }}
{% endblock %}