aboutsummaryrefslogtreecommitdiff
path: root/gn_auth/templates/emails/verify-email.html
blob: 08f1dfefaa8dfe93b16c3e62703098b281b1b169 (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
39
40
41
42
43
44
45
46
47
48
49
<html>
  <head>
    <meta charset="UTF-8" />
    <title>{{subject}}</title>
    <style type="text/css">
      .btn {
          display: inline-block;
          text-align: center;
          vertical-align: center;
          cursor: pointer;
          border-radius: 4px;
          background-color: #336699;
          border-color: #357ebd;
      }
      .verification-code{
          color: #3A3AFF;
          font-weight: bolder;
      }
      .note {
          font-weight: bold;
          color: #ee55ee;
      }
    </style>
  </head>
  <body>
    <p>Thank you for registering an account with GeneNetwork.</p>

    <p>
      To avoid bots, we need to verify that you are an actual human. To do so,
      please
      <a href="{{verification_uri}}/{{verification_code}}"
         class="btn">
        Click here
      </a>.
    </p>

    <p>
      If that does not work, please log in to GeneNetwork and copy the
      verification code below when requested:<br /><br />

      <span class="verification-code">{{verification_code}}</span>
    </p>

    <p class="note">
      Please note that the verification code will expire in
      <strong>{{expiration_minutes}}</strong> minutes after it was generated.
    </p>
  </body>
</html>