1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-30 23:25:48 +00:00
gitea/templates/user/auth/signup_openid_navbar.tmpl

13 lines
528 B
Handlebars
Raw Normal View History

<div class="ui secondary pointing tabular top attached borderless menu new-menu navbar">
<div class="new-menu-inner">
<a class="{{if .PageIsOpenIDConnect}}active {{end}}item" href="{{AppSubUrl}}/user/openid/connect">
{{.locale.Tr "auth.openid_connect_title"}}
2017-03-17 14:16:08 +00:00
</a>
{{if and .EnableOpenIDSignUp (not .AllowOnlyInternalRegistration)}}
<a class="{{if .PageIsOpenIDRegister}}active {{end}}item" href="{{AppSubUrl}}/user/openid/register">
{{.locale.Tr "auth.openid_register_title"}}
</a>
{{end}}
</div>
2017-03-17 14:16:08 +00:00
</div>