Files
Escapepage/templates/tech/reset_password/request.html.twig
T
2026-07-04 19:08:31 +02:00

21 lines
660 B
Twig

{% extends 'layout/auth.html.twig' %}
{% block title %}Reset your password{% endblock %}
{% block auth_body %}
{% for flash_error in app.flashes('reset_password_error') %}
<div class="alert alert-danger" role="alert">{{ flash_error }}</div>
{% endfor %}
{{ form_start(requestForm) }}
{{ form_row(requestForm.email) }}
<p class="text-muted small">
Enter your email address, and we will send you a link to reset your password.
</p>
<div class="d-grid">
<button class="btn btn-primary">Send password reset email</button>
</div>
{{ form_end(requestForm) }}
{% endblock %}