register_success.tmpl 901 B

12345678910111213141516171819202122
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>{{.User.Name}}, welcome to {{.AppName}}</title>
  6. </head>
  7. <body class="mail register success">
  8. <div class="ui segment">
  9. <div class="ui header">
  10. <img class="ui image" src="{{.AppUrl}}/img/favicon.png">
  11. {{.AppName}}
  12. </div>
  13. <div class="ui divider"></div>
  14. <p>Hi <b>{{.User.Name}}</b>, this is your registration email for {{.AppName}}!</p>
  15. <p>Please click the following link to verify your e-mail address within <b>{{.ActiveCodeLives}} hours</b>:</p>
  16. <p><a href="{{.AppUrl}}user/activate?code={{.Code}}">{{.AppUrl}}user/activate?code={{.Code}}</a></p>
  17. <p>Not working? Try copying and pasting it to your browser.</p>
  18. </div>
  19. <p class="copyright text grey">© 2015 <a target="_blank" href="http://gogs.io">Gogs: Go Git Service</a></p>
  20. </body>
  21. </html>