forked from GNUsocial/gnu-social
12 lines
510 B
Twig
12 lines
510 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Password Reset Email Sent{% endblock %}
|
|
|
|
{% block body %}
|
|
<p>
|
|
An email has been sent that contains a link that you can click to reset your password.
|
|
This link will expire in {{ resetToken.expirationMessageKey|trans(resetToken.expirationMessageData, 'ResetPasswordBundle') }}.
|
|
</p>
|
|
<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>
|
|
{% endblock %}
|