mirror of https://github.com/gogits/gogs.git
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.
34 lines
1.5 KiB
34 lines
1.5 KiB
{{template "base/head" .}} |
|
{{template "base/navbar" .}} |
|
<div id="gogs-body" class="container"> |
|
<div id="gogs-user-setting-nav" class="col-md-3"> |
|
<h4>Account Setting</h4> |
|
<ul class="list-group"> |
|
<li class="list-group-item"><a href="/user/setting">Account Profile</a></li> |
|
<li class="list-group-item"><a href="#">Emails and Password</a></li> |
|
<li class="list-group-item"><a href="#">Notifications</a></li> |
|
<li class="list-group-item"><a href="/user/setting/ssh/">SSH Keys</a></li> |
|
<li class="list-group-item"><a href="#">Security</a></li> |
|
<li class="list-group-item list-group-item-success"><a href="/user/delete">Delete Account</a></li> |
|
</ul> |
|
</div> |
|
<div id="gogs-user-setting-container" class="col-md-9"> |
|
<form action="/user/delete" method="post" class="form-horizontal" id="gogs-user-delete"> |
|
<h4>Delete Account</h4> |
|
<p class="alert alert-danger">Deleting your account is permanent. Sorry to see you go, if you have any feedback you can contact us.</p> |
|
<div class="form-group"> |
|
<div class="col-md-3"> |
|
<button type="submit" class="btn btn-danger btn-lg">Delete Account</button> |
|
</div> |
|
</div> |
|
</form> |
|
</div> |
|
</div> |
|
<script> |
|
$(function(){ |
|
$('#gogs-user-delete').on('submit',function(){ |
|
return confirm("Are you sure ?"); |
|
}) |
|
}); |
|
</script> |
|
{{template "base/footer" .}} |