activate_email.tmpl 640 B

123456789101112131415
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>{{.User.Name}}, please verify your e-mail address</title>
  6. </head>
  7. <body>
  8. <p>Hi <b>{{.User.Name}}</b>,</p>
  9. <p>Please click the following link to verify your e-mail address within <b>{{.ActiveCodeLives}} hours</b>:</p>
  10. <p><a href="{{.AppUrl}}user/activate_email?code={{.Code}}&email={{.Email}}">{{.AppUrl}}user/activate_email?code={{.Code}}&email={{.Email}}</a></p>
  11. <p>Not working? Try copying and pasting it to your browser.</p>
  12. <p>© 2015 <a target="_blank" href="http://gogs.io">Gogs: Go Git Service</a></p>
  13. </body>
  14. </html>