templates/reset_password/check_email.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}{{ "Password Reset Email Sent"|trans }}{% endblock %}
  3. {% block body %}
  4.     <h1>{{ "Password Reset Email Sent"|trans }}</h1>
  5. <div class="d-flex justify-content-center">
  6.     <div>
  7.         <p>
  8.             {{ "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 }}
  9.             {{ "This link will expire in"|trans }} {{ resetToken.expirationMessageKey|trans(resetToken.expirationMessageData, 'ResetPasswordBundle') }}.
  10.         </p>
  11.         <p>{{ "If you don't receive an email please check your spam folder or"|trans }} <a href="{{ path('app_forgot_password_request') }}">
  12.                 {{ "try again"|trans }}</a>.</p>
  13.     </div>
  14. </div>
  15. {% endblock %}