mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-07-08 08:30:15 +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
17 lines
711 B
Twig
17 lines
711 B
Twig
{% extends 'backoffice/base.html.twig' %}
|
|
|
|
{% block title %}E-mail verstuurd{% endblock %}
|
|
|
|
{% block body %}
|
|
<h3 class="mb-3">{{ 'Check your email'|trans }}</h3>
|
|
|
|
<p>
|
|
{{ 'If an account matching your email exists, then an email was just sent that contains a link that you can use to reset your password.'|trans }}
|
|
{{ 'This link will expire in %count%.'|trans({'%count%': resetToken.expirationMessageKey|trans(resetToken.expirationMessageData, 'ResetPasswordBundle')}) }}
|
|
</p>
|
|
<p>
|
|
{{ 'If you don\'t receive an email please check your spam folder or'|trans }}
|
|
<a href="{{ path('tvdt_forgot_password_request') }}">{{ 'try again'|trans }}</a>.
|
|
</p>
|
|
{% endblock %}
|