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.
38 lines
1.9 KiB
38 lines
1.9 KiB
{{template "base/head" .}} |
|
{{template "base/navbar" .}} |
|
<div id="body" class="container" data-page="user"> |
|
{{template "user/setting_nav" .}} |
|
<div id="user-setting-container" class="col-md-9"> |
|
<h4>Delete Account</h4> |
|
{{template "base/alert" .}} |
|
{{if not .Flash.ErrorMsg}}<p class="alert alert-danger">The operation will delete your account permanently. Sorry to see you go, but we know you'll back soon.</p>{{end}} |
|
<div class="form-group"> |
|
<button type="submit" class="btn btn-danger btn-lg" href="#delete-account-modal" id="delete-account" data-toggle="modal">Delete Account</button> |
|
</div> |
|
</div> |
|
|
|
<div class="modal fade" id="delete-account-modal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> |
|
<div class="modal-dialog"> |
|
<form action="/user/delete" method="post" class="modal-content" id="user-delete"> |
|
{{.CsrfTokenHtml}} |
|
<div class="modal-header"> |
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> |
|
<h4 class="modal-title" id="myModalLabel">Delete Account</h4> |
|
</div> |
|
|
|
<div class="modal-body"> |
|
<div class="form-group"> |
|
<label>Make sure your are owner of this account. Please enter your password.<strong class="text-danger">*</strong></label> |
|
<input name="password" class="form-control" type="password" placeholder="Type your account password" required="required"> |
|
</div> |
|
</div> |
|
|
|
<div class="modal-footer"> |
|
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button> |
|
<button type="submit" class="btn btn-danger">Delete</button> |
|
</div> |
|
</form> |
|
</div> |
|
</div> |
|
</div> |
|
{{template "base/footer" .}} |