check_email.html.twig 510 B

123456789101112
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Password Reset Email Sent{% endblock %}
  3. {% block body %}
  4. <p>
  5. An email has been sent that contains a link that you can click to reset your password.
  6. This link will expire in {{ resetToken.expirationMessageKey|trans(resetToken.expirationMessageData, 'ResetPasswordBundle') }}.
  7. </p>
  8. <p>If you don't receive an email please check your spam folder or <a href="{{ path('app_forgot_password_request') }}">try again</a>.</p>
  9. {% endblock %}