Files

13 lines
575 B
Handlebars
Raw Permalink Normal View History

<overflow-menu class="ui secondary pointing tabular top attached borderless menu secondary-nav">
<div class="overflow-menu-items tw-justify-center">
2022-12-09 21:34:51 +08:00
<a class="{{if .PageIsOpenIDConnect}}active {{end}}item" href="{{AppSubUrl}}/user/openid/connect">
{{ctx.Locale.Tr "auth.openid_connect_title"}}
2017-03-17 15:16:08 +01:00
</a>
2021-05-09 16:13:35 +02:00
{{if and .EnableOpenIDSignUp (not .AllowOnlyInternalRegistration)}}
2022-12-09 21:34:51 +08:00
<a class="{{if .PageIsOpenIDRegister}}active {{end}}item" href="{{AppSubUrl}}/user/openid/register">
{{ctx.Locale.Tr "auth.openid_register_title"}}
2020-11-26 20:33:28 +01:00
</a>
{{end}}
</div>
</overflow-menu>