aboutsummaryrefslogtreecommitdiff
path: root/gn_auth/templates/users/forgot-password.html
blob: 94fcc68e24f45cf5594ce9286238834708e402fd (plain)
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
33
34
35
{%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">
    <form method="POST"
          action="{{url_for('oauth2.users.forgot_password')}}">
      <div class="form-group">
        <span>
          Provide you email below, and we will send you a link you can use to
          change your password.
        </span>
      </div>

      <div class="form-group">
        <label for="txt-email" class="form-label">Email</label>
        <input type="email" name="email" id="txt-email" class="form-control" />
      </div>

      <div class="form-group">
        <input type="submit" class="btn btn-primary" value="Send Link" />
      </div>
    </form>
  </div>

</div>
{%endblock%}