gitea源码

signup_openid_navbar.tmpl 575B

12345678910111213
  1. <overflow-menu class="ui secondary pointing tabular top attached borderless menu secondary-nav">
  2. <div class="overflow-menu-items tw-justify-center">
  3. <a class="{{if .PageIsOpenIDConnect}}active {{end}}item" href="{{AppSubUrl}}/user/openid/connect">
  4. {{ctx.Locale.Tr "auth.openid_connect_title"}}
  5. </a>
  6. {{if and .EnableOpenIDSignUp (not .AllowOnlyInternalRegistration)}}
  7. <a class="{{if .PageIsOpenIDRegister}}active {{end}}item" href="{{AppSubUrl}}/user/openid/register">
  8. {{ctx.Locale.Tr "auth.openid_register_title"}}
  9. </a>
  10. {{end}}
  11. </div>
  12. </overflow-menu>