You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

signup_openid_navbar.tmpl 534B

123456789101112
  1. <div class="ui secondary pointing tabular top attached borderless menu stackable new-menu navbar">
  2. <div class="new-menu-inner">
  3. <a class="{{if .PageIsOpenIDConnect}}active{{end}} item" href="{{AppSubUrl}}/user/openid/connect">
  4. {{.i18n.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. {{.i18n.Tr "auth.openid_register_title"}}
  9. </a>
  10. {{end}}
  11. </div>
  12. </div>