bench-forgejo/templates/user/auth/signup_openid_navbar.tmpl

13 lines
538 B
Handlebars
Raw Normal View History

2017-03-17 19:46:08 +05:30
<div class="ui secondary pointing tabular top attached borderless menu stackable 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 19:46:08 +05:30
</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 19:46:08 +05:30
</div>