mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-07-09 00:50:14 +02:00
b915d87d4a
* feat: password reset via symfonycasts/reset-password-bundle (#179) Implements the full password reset flow using the SymfonyCasts reset-password-bundle. * ci: share base layer cache between dev and prod builds * fix: use CSS form selector in tests instead of translated button text * fix: translate missing validator string for reset password email field * fix: translate reset password form labels via TranslatorInterface * ci: override MAILER_DSN to null for PHPUnit so mailer host is not required
19 lines
637 B
Twig
19 lines
637 B
Twig
{% extends 'backoffice/base.html.twig' %}
|
|
|
|
{% block title %}Wachtwoord vergeten{% endblock %}
|
|
|
|
{% block body %}
|
|
<h3 class="mb-3">{{ 'Reset your password'|trans }}</h3>
|
|
|
|
{{ form_start(requestForm) }}
|
|
{{ form_row(requestForm.email) }}
|
|
|
|
<small class="d-block mb-3">
|
|
{{ 'Enter your email address, and we will send you a link to reset your password.'|trans }}
|
|
</small>
|
|
|
|
<button class="btn btn-primary" type="submit">{{ 'Send password reset email'|trans }}</button>
|
|
<a href="{{ path('tvdt_login_login') }}" class="btn btn-link">{{ 'Back to login'|trans }}</a>
|
|
{{ form_end(requestForm) }}
|
|
{% endblock %}
|