-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathcheck-email.html.twig
More file actions
17 lines (14 loc) · 934 Bytes
/
check-email.html.twig
File metadata and controls
17 lines (14 loc) · 934 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends '@Tabler/security/reset_password/_layout.html.twig' %}
{% block title %}
{{ 'Password Reset Email Sent'|trans({}, 'TablerBundle') }}
{% endblock %}
{% block login_box_msg %}
{{ 'Password Reset Email Sent'|trans({}, 'TablerBundle') }}
{% endblock %}
{% block login_form %}
{% set expirationMessage = resetToken.expirationMessageKey|trans(resetToken.expirationMessageData, 'ResetPasswordBundle') %}
<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. This link will expire in %expirationMessage%.' | trans({'%expirationMessage%' : expirationMessage}, 'TablerBundle') }}
</p>
<p>{{ "If you don't receive an email please check your spam folder or"|trans({}, 'TablerBundle') }} <a href="{{ path('tabler_password_reset'|tabler_route) }}">{{ 'Try again'|trans({}, 'TablerBundle') }}</a>.</p>
{% endblock %}