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.

33 lines
1.5 KiB

  1. {{template "base/head" .}}
  2. {{template "base/navbar" .}}
  3. <div id="gogs-body" class="container">
  4. <div id="gogs-user-setting-nav" class="col-md-3">
  5. <h4>Account Setting</h4>
  6. <ul class="list-group">
  7. <li class="list-group-item"><a href="/user/setting">Account Profile</a></li>
  8. <li class="list-group-item"><a href="#">Emails and Password</a></li>
  9. <li class="list-group-item"><a href="#">Notifications</a></li>
  10. <li class="list-group-item"><a href="/user/setting/ssh/">SSH Keys</a></li>
  11. <li class="list-group-item"><a href="#">Security</a></li>
  12. <li class="list-group-item list-group-item-success"><a href="/user/delete">Delete Account</a></li>
  13. </ul>
  14. </div>
  15. <div id="gogs-user-setting-container" class="col-md-9">
  16. <form action="/user/delete" method="post" class="form-horizontal" id="gogs-user-delete">
  17. <h4>Delete Account</h4>
  18. <p class="alert alert-danger">{{if not .HasError}}The operation will delete your account permanently. Sorry to see you go, but we know you'll back soon.{{else}}{{.ErrorMsg}}{{end}}</p>
  19. <div class="form-group">
  20. <div class="col-md-3">
  21. <button type="submit" class="btn btn-danger btn-lg">Delete Account</button>
  22. </div>
  23. </div>
  24. </form>
  25. </div>
  26. </div>
  27. <script>
  28. $(function(){
  29. $('#gogs-user-delete').on('submit',function(){
  30. return confirm("Are you sure ?");
  31. })
  32. });
  33. </script>
  34. {{template "base/footer" .}}