activate.tmpl 811 B

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