aboutsummaryrefslogtreecommitdiff
path: root/gn_auth/templates/users/forgot-password-token-send-success.html
blob: ab8a741b3397ad19098c417eb0e501b6fc2eb20b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{%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>
      We have sent an email to '{{email}}'. Please log in to your email and
      click the URL to change your password.
    </p>
  </div>

</div>
{%endblock%}