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.

36 lines
1.3 KiB

10 years ago
10 years ago
  1. {{template "base/head" .}}
  2. {{template "base/navbar" .}}
  3. <div id="body" class="container" data-page="user">
  4. {{template "user/setting_nav" .}}
  5. <div id="repo-setting-container" class="col-md-10">
  6. {{template "base/alert" .}}
  7. <div class="panel panel-default">
  8. <div class="panel-heading">
  9. Social Account
  10. </div>
  11. <div class="panel-body">
  12. <table class="table">
  13. <thead>
  14. <tr>
  15. <th></th>
  16. <th>Name</th>
  17. <th>Identity</th>
  18. <th>Op.</th>
  19. </tr>
  20. </thead>
  21. <tbody>
  22. {{range .Socials}}
  23. <tr>
  24. <td><i class="fa {{Oauth2Icon .Type}} fa-2x"></i></td>
  25. <td>{{Oauth2Name .Type}}</td>
  26. <td>{{.Identity}}</td>
  27. <td><a href="/user/settings/social?remove={{.Id}}">Unbind</a></td>
  28. </tr>
  29. {{end}}
  30. </tbody>
  31. </table>
  32. </div>
  33. </div>
  34. </div>
  35. </div>
  36. {{template "base/footer" .}}