summaryrefslogtreecommitdiffstats
path: root/templates/user/social.tmpl
blob: 7814cc09568b502db90c2a4a5b68585684addb44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{{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" .}}