-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpassword-forgotten-confirm.html.twig
32 lines (29 loc) · 1.27 KB
/
password-forgotten-confirm.html.twig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{% extends 'base.html.twig' %}
{% block javascripts %}
{{ parent() }}
{{ encore_entry_script_tags('register') }}
{% endblock %}
{% block title %}
{{'Forgot your password ?'|trans}}
{% endblock %}
{% block body %}
<div class="w-full max-w-[400px] px-[25px] pt-[30px] pb-[54px] lg:px-0 lg:pt-[50px] lg:pb-[120px] mx-auto text-center">
<div class="w-[110px] lg:w-[200px] mx-auto mb-[40px]">
{{ source('assets/images/account.svg') }}
</div>
<p class="paragraph-2">
{{'If your account exists, a link has just been sent to your e-mail address. Please check your inbox.'|trans}}
</p>
<div class="border-t border-grey mt-[40px] pt-[40px] paragraph-5">
<b class="block font-bold text-black">{{"Didn't you receive the reset link?"|trans}}</b>
<span>{{'Remember to check your spam, then try to'|trans}}
<a href="{{path('password_resend')}}" class="underline hover:no-underline">{{"resend the e-mail"|trans}}</a>
</span>
{% if app.request.get('resend_success') %}
<div class="col-span-full">
{% include "@components/Organisms/SnackBar/SnackBar.html.twig" with {text: 'A link has just been sent to your email address.'|trans, variant: 'validated', withIcon:true, size: "full", classes: "mt-[20px]" } %}
</div>
{% endif %}
</div>
</div>
{% endblock %}