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.
37 lines
1.3 KiB
37 lines
1.3 KiB
{{template "base/head" .}} |
|
{{template "base/navbar" .}} |
|
<div id="body" class="container" data-page="user"> |
|
{{template "user/setting_nav" .}} |
|
<div id="repo-setting-container" class="col-md-10"> |
|
{{template "base/alert" .}} |
|
<div class="panel panel-default"> |
|
<div class="panel-heading"> |
|
Social Account |
|
</div> |
|
|
|
<div class="panel-body"> |
|
<table class="table"> |
|
<thead> |
|
<tr> |
|
<th></th> |
|
<th>Name</th> |
|
<th>Identity</th> |
|
<th>Op.</th> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
{{range .Socials}} |
|
<tr> |
|
<td><i class="fa {{Oauth2Icon .Type}} fa-2x"></i></td> |
|
<td>{{Oauth2Name .Type}}</td> |
|
<td>{{.Identity}}</td> |
|
<td><a href="/user/settings/social?remove={{.Id}}">Unbind</a></td> |
|
</tr> |
|
{{end}} |
|
</tbody> |
|
</table> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
{{template "base/footer" .}} |