diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/user/profile.tmpl | 8 | ||||
-rw-r--r-- | templates/user/settings/openid.tmpl | 18 |
2 files changed, 26 insertions, 0 deletions
diff --git a/templates/user/profile.tmpl b/templates/user/profile.tmpl index 08627616b5..a055a99a85 100644 --- a/templates/user/profile.tmpl +++ b/templates/user/profile.tmpl @@ -34,6 +34,14 @@ <a target="_blank" rel="noopener" href="{{.Owner.Website}}">{{.Owner.Website}}</a> </li> {{end}} + {{range .OpenIDs}} + {{if .Show}} + <li> + <i class="fa fa-openid"></i> + <a target="_blank" rel="noopener" href="{{.URI}}">{{.URI}}</a> + </li> + {{end}} + {{end}} <li><i class="octicon octicon-clock"></i> {{.i18n.Tr "user.join_on"}} {{DateFmtShort .Owner.Created}}</li> <li> <i class="octicon octicon-person"></i> diff --git a/templates/user/settings/openid.tmpl b/templates/user/settings/openid.tmpl index a8b3a4e0f5..9da4be4274 100644 --- a/templates/user/settings/openid.tmpl +++ b/templates/user/settings/openid.tmpl @@ -20,6 +20,24 @@ {{$.i18n.Tr "settings.delete_key"}} </button> </div> + <div class="ui right"> + <form action="{{$.Link}}/toggle_visibility" method="post"> + {{$.CsrfTokenHtml}} + <input name="id" type="hidden" value="{{.ID}}"> + {{if .Show}} + <button class="ui tiny button"> + <i class="icon fa-eye"></i> + {{$.i18n.Tr "settings.hide_openid"}} + </button> + {{else}} + <button class="ui tiny button"> + <i class="icon fa-eye-slash"></i> + {{$.i18n.Tr "settings.show_openid"}} + </button> + {{end}} + </button> + </form> + </div> </div> </div> {{end}} |