123456789101112131415161718192021 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>{{.Username}}, please activate your account</title>
- <link rel="stylesheet" href="https://gitote-cdn.netlify.com/css/email.css">
- </head>
- <body>
- <div class="mail">
- <div class="body">
- <h2>Hi {{.Username}}, thanks for registering at Gitote!</h2>
- <p>Please click the following link to verify your e-mail address within <b>{{.ActiveCodeLives}} hours</b>:</p>
- <a class="button" href="{{AppURL}}user/activate?code={{.Code}}">Confirm</a>
- <h5>{{AppURL}}user/activate?code={{.Code}}</h5>
- <p>Not working? Try copying and pasting it to your browser.</p>
- <p>© 2019 <a target="_blank" rel="noopener noreferrer" href="{{AppURL}}">Gitote</a></p>
- </div>
- </div>
- </body>
- </html>
|