check_email.html.twig 558 B

1234567891011
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Password Reset Email Sent{% endblock %}
  3. {% block content %}
  4. <p>
  5. 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.
  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 %}