aboutsummaryrefslogtreecommitdiff
path: root/templates/email/forgot_username.html
blob: 89fa98258c89d05e5ceb99e26e49d88f054cbcdd (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Verify your email</title>
    <style>
        body {
            background: #000033;
            color: #ccccff;
            font-family: monospace;
            margin: 0;
            padding: 0;
            font-size: 13px;
            text-align: justify;
        }
        .container {
            background: #0d001a;
            border: 1px solid #ff99cc;
            max-width: 768px;
            margin: 40px auto;
            padding: 16px;
        }
        h1 {
            color: #ffccff;
            margin-bottom: 8px;
            font-size: 16px;
        }
        p {
            color: #99ffcc;
            line-height: 18px;
        }
        .verify-link {
            display: inline-block;
            background: #330066;
            color: #ccffcc;
            border: 1px solid #99ffcc;
            padding: 10px 24px;
            text-decoration: none;
            font-weight: bold;
            margin: 12px auto;
        }
        .verify-link:hover {
            background: #ff99cc;
            color: #1a001a;
            border-color: #ff99cc;
        }
        .footer {
            color: #ffccff;
            margin-top: 32px;
            font-size: 11px;
        }
    </style>
  </head>
  <body>
    <div class="container">
        <h1>We heard you forgot your username?</h1>
        <p>
            No worries! The username(s) associated with your email on {{ .Appname }} are: <strong>{{ .Username }}</strong>
        </p>
        <p>
            In case you forgot your password as well, you can reset it by clicking the link below:
        </p>
        <a class="verify-link" href="{{ .Link }}">Reset Password</a>
        <p>
            If you are unable to click the link, copy and paste it into your browser:
        </p>
        <p>
            <a href="{{ .Link }}">{{ .Link }}</a>
        </p>
        <div class="footer">
            If you did not request this email, you can safely ignore it.
        </div>
    </div>
  </body>
</html>