templates/reset_password/request.html.twig line 1
{% extends 'base.html.twig' %}{% block title %}Reset your password{% endblock %}{% block content %}<div class="content h-full"><div class="content__base flex flex-col items-center">{% for flash_error in app.flashes('reset_password_error') %}<div class="alert alert-danger" role="alert">{{ flash_error }}</div>{% endfor %}<h1 class="mb-2">Réinitialise ton mot de passe</h1><div class="flex flex-col items-center w-3/4 lg:w-2/6 md:w-2/4 auth_form">{{ form_start(requestForm) }}{{ form_row(requestForm.email) }}<button class="btn btn-primary mt-2">Envoyer</button>{{ form_end(requestForm) }}</div></div></div>{% endblock %}