{% extends 'layout_public.html.twig' %}
{% import "Common/macros.html.twig" as macros %}
{% form_theme form with 'Common/form_theme.html.twig' %}
{% block content %}
<div class="page" id="security-reset-password">
<form action="{{ path('app_reset_password') }}" method="post" class="form-security">
<div class="form-body form-security">
<div class="LogoSecurity">
<img src="{{ asset('images/app/security/') }}munireg-finallogo.svg" alt="" >
</div>
{% if formIsValid %}
<p>If this email is associated with a user of the application then an email has been sent to reset your password.</p>
{% endif %}
{{ macros.form_general_errors(form) }}
{{ form_row(form.email) }}
<div class="form-footer">
<button type="submit" class="btn-green">Recover password</button>
<a href="{{ path('app_login')}}" class="btn-clean-white">Go back to login</a>
</div>
<div class="create-account">
<label for="remember-me">
<input type="checkbox" id="remember-me" name="_remember_me">
<span>Remember me</span>
</label>
<span>First time?</span>
<a href="{{ path('app_registration_index')}}">Create an account</a>
</div>
</div>
{{ form_end(form) }}
</div>
{% endblock %}