blob: 8782e8c49076d65eeea0312c6acaaa7ce41079e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{%extends "base.html"%}
{%block title%}gn-auth: Forgot Password{%endblock%}
{%block pagetitle%}Forgot Password{%endblock%}
{%block content%}
{{flash_messages()}}
<div class="container-fluid">
<div class="row"><h1>Forgot Password</h1></div>
<div class="row">
<p class="text-info"
style="font-size:1.5em;text-align:center;margin-top:2em;">
We have sent an email to '<strong>{{email}}</strong>'. Please use the link
in the email we sent to change your password.
</p>
</div>
</div>
{%endblock%}
|