{% extends 'main.html.twig' %}
{% block javascripts %}
{{ parent() }}
{% endblock %}
{% block stylesheets %}
{{ parent() }}
{% endblock %}
{% block title %}Project{% endblock %}
{% block content %}
{% for label, messages in app.flashes %}
<div class="alert alert-{{ label }} alert-dismissible fade show" role="alert">
{% for message in messages %}
{{ message }}
{% endfor %}
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
{% endfor %}
<div class="container vh-100 d-flex justify-content-center align-items-center">
<div class="card p-4" style="width: 33%; min-width: 300px;">
<div class="card-body">
<h1>Reset your password</h1>
{% for flash_error in app.flashes('reset_password_error') %}
<div class="alert alert-danger" role="alert">{{ flash_error }}</div>
{% endfor %}
{{ form_start(requestForm) }}
<div class="mb-3">
{{ form_row(requestForm.email) }}
</div>
<div class="mb-3">
<small>
Enter your email address, and we will send you a
link to reset your password.
</small>
</div>
<div class="d-grid">
<button class="btn btn-primary">Send password reset email</button>
</div>
{{ form_end(requestForm) }}
</div>
</div>
</div>
{% endblock %}