You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
1.0 KiB

10 years ago
  1. {{template "base/head" .}}
  2. {{template "base/navbar" .}}
  3. <div id="body" class="container">
  4. <form action="/user/reset_password?code={{.Code}}" method="post" class="form-horizontal card" id="login-card">
  5. {{.CsrfTokenHtml}}
  6. <h3>Reset Your Pasword</h3>
  7. {{template "base/alert" .}}
  8. {{if .IsResetForm}}
  9. <div class="form-group">
  10. <label class="col-md-4 control-label">Password: </label>
  11. <div class="col-md-6">
  12. <input name="passwd" type="password" class="form-control" placeholder="Type your password" required="required">
  13. </div>
  14. </div>
  15. <hr/>
  16. <div class="form-group">
  17. <div class="col-md-offset-4 col-md-6">
  18. <button type="submit" class="btn btn-lg btn-primary">Click here to reset your password</button>
  19. </div>
  20. </div>
  21. {{else}}
  22. <p>Sorry, your confirmation code has expired or is not valid.</p>
  23. {{end}}
  24. </form>
  25. </div>
  26. {{template "base/footer" .}}