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.

signin_navbar.tmpl 863B

123456789101112131415161718192021222324
  1. {{if or .EnableOpenIDSignIn .EnableSSPI}}
  2. <div class="ui secondary pointing tabular top attached borderless menu new-menu navbar">
  3. <div class="new-menu-inner">
  4. <a class="{{if .PageIsLogin}}active {{end}}item" rel="nofollow" href="{{AppSubUrl}}/user/login">
  5. {{ctx.Locale.Tr "auth.login_userpass"}}
  6. </a>
  7. <a class="{{if .PageIsSignUp}}active{{end}} item" rel="nofollow" href="{{AppSubUrl}}/user/sign_up">
  8. {{ctx.Locale.Tr "auth.create_new_account"}}
  9. </a>
  10. {{if .EnableOpenIDSignIn}}
  11. <a class="{{if .PageIsLoginOpenID}}active {{end}}item" rel="nofollow" href="{{AppSubUrl}}/user/login/openid">
  12. {{svg "fontawesome-openid"}}
  13. &nbsp;OpenID
  14. </a>
  15. {{end}}
  16. {{if .EnableSSPI}}
  17. <a class="item" rel="nofollow" href="{{AppSubUrl}}/user/login?auth_with_sspi=1">
  18. {{svg "fontawesome-windows"}}
  19. &nbsp;SSPI
  20. </a>
  21. {{end}}
  22. </div>
  23. </div>
  24. {{end}}