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.

link_account.tmpl 1.1KB

12345678910111213141516171819202122232425262728293031323334
  1. {{template "base/head" .}}
  2. <div class="page-content user link-account">
  3. <div class="ui secondary pointing tabular top attached borderless menu new-menu navbar">
  4. <div class="new-menu-inner">
  5. <!-- TODO handle .ShowRegistrationButton once other login bugs are fixed -->
  6. {{if not .AllowOnlyInternalRegistration}}
  7. <a class="item {{if not .user_exists}}active{{end}}"
  8. data-tab="auth-link-signup-tab">
  9. {{.i18n.Tr "auth.oauth_signup_tab"}}
  10. </a>
  11. {{end}}
  12. <a class="item {{if .user_exists}}active{{end}}"
  13. data-tab="auth-link-signin-tab">
  14. {{.i18n.Tr "auth.oauth_signin_tab"}}
  15. </a>
  16. </div>
  17. </div>
  18. <div class="ui middle very relaxed page grid">
  19. <div class="column">
  20. <div class="ui tab {{if not .user_exists}}active{{end}}"
  21. data-tab="auth-link-signup-tab">
  22. {{template "user/auth/signup_inner" .}}
  23. </div>
  24. <div class="ui tab {{if .user_exists}}active{{end}}"
  25. data-tab="auth-link-signin-tab">
  26. <div class="ui user signin container icon">
  27. {{template "user/auth/signin_inner" .}}
  28. </div>
  29. </div>
  30. </div>
  31. </div>
  32. </div>
  33. {{template "base/footer" .}}