aboutsummaryrefslogtreecommitdiff
path: root/gn_auth/templates/emails/forgot-password.html
blob: e40ebb87eb93ba791428ceae8abaf365513a2488 (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
36
37
38
<html>
  <head>
    <meta charset="UTF-8" />
    <title>{{subject}}</title>
  </head>
  <body>
    <p>
      You (or someone pretending to be you) made a request to change your
      password. Please follow the link below to change it.
    </p>

    <p>
      Click the button below to change your password
      <a href="{{forgot_password_uri}}"
         style="display: block;text-align: center;vertical-align: center;cursor: pointer;border-radius: 4px;background-color: #336699;border-color: #357ebd;color: white;text-decoration: none;font-size: large;width: 9em;text-transform: capitalize;margin: 1em 0 0 3em;box-shadow: 2px 2px rgba(0, 0, 0, 0.3);">Change my Password</a>.</p>

    <p>
      Or copy the link below onto your browser's address bar:<br /><br />
      <span style="font-weight: bolder;">{{forgot_password_uri}}</span>
    </p>

    <p>
      If you did not request to change your password, simply ignore this email.
    </p>

    <p style="font-weight: bold;color: #ee55ee;">
      The link will expire in <strong>{{expiration_minutes}}</strong> minutes.
    </p>

    <hr />
    <p>
      <small>
        Note that if you requested to change your password multiple times, only
        the latest/newest token will be valid.
      </small>
    </p>
  </body>
</html>