active.tmpl 1.3 KB

123456789101112131415161718192021222324252627
  1. {{template "base/head" .}}
  2. {{template "base/navbar" .}}
  3. <div id="gogs-body" class="container">
  4. <form action="/user/activate" method="post" class="form-horizontal gogs-card" id="gogs-login-card">
  5. <h3>Activate Your Account</h3>
  6. {{if .IsActivatePage}}
  7. {{if .ServiceNotEnabled}}
  8. <p>Sorry, Register Mail Confirmation has been disabled.</p>
  9. {{else}}
  10. <p>New confirmation e-mail has been sent to <b>{{.SignedUser.Email}}</b>, please check your inbox within {{.Hours}} hours.</p>
  11. {{end}}
  12. {{else}}
  13. {{if .IsSendRegisterMail}}
  14. <p>A confirmation e-mail has been sent to <b>{{.Email}}</b>, please check your inbox within {{.Hours}} hours.</p>
  15. {{else}}
  16. <p>Hi, {{.SignedUser.Name}}, you have an unconfirmed email address(<b>{{.SignedUser.Email}}</b>). If you haven't received a confirmation e-mail or need to resend a new one, please click botton below.</p>
  17. <hr/>
  18. <div class="form-group">
  19. <div class="col-md-offset-4 col-md-6">
  20. <button type="submit" class="btn btn-lg btn-primary">Click here to resend your active e-mail</button>
  21. </div>
  22. </div>
  23. {{end}}
  24. {{end}}
  25. </form>
  26. </div>
  27. {{template "base/footer" .}}