templates/Frontend/ResetPassword/Request.twig line 1
{% extends 'Frontend/Layout.twig' %}{% form_theme requestForm 'bootstrap_5_layout.html.twig' %}{% block title %}Reset your password{% endblock %}{% block body %}<div class="card mx-auto mt-5" style="width:400px;">{#<h3 class="card-header"></h3>#}<div class="card-body">{% for flash_error in app.flashes('reset_password_error') %}<div class="alert alert-danger" role="alert">{{ flash_error }}</div>{% endfor %}<h1>Reset your password</h1><p>Enter your email address and we will send you a link to reset your password.</p>{{ form_start(requestForm) }}{{ form_row(requestForm.email) }}<button class="btn btn-primary">Send password reset email</button>{{ form_end(requestForm) }}</div></div>{% endblock %}