2017-02-22 07:14:37 +00:00
|
|
|
{{template "base/head" .}}
|
2023-02-01 22:56:10 +00:00
|
|
|
<div role="main" aria-label="{{.Title}}" class="page-content user link-account">
|
2020-11-14 02:46:40 +00:00
|
|
|
<div class="ui secondary pointing tabular top attached borderless menu new-menu navbar">
|
2020-11-26 19:33:28 +00:00
|
|
|
<div class="new-menu-inner">
|
|
|
|
<!-- TODO handle .ShowRegistrationButton once other login bugs are fixed -->
|
2021-05-09 14:13:35 +00:00
|
|
|
{{if not .AllowOnlyInternalRegistration}}
|
|
|
|
<a class="item {{if not .user_exists}}active{{end}}"
|
|
|
|
data-tab="auth-link-signup-tab">
|
2022-06-27 20:58:46 +00:00
|
|
|
{{.locale.Tr "auth.oauth_signup_tab"}}
|
2021-05-09 14:13:35 +00:00
|
|
|
</a>
|
|
|
|
{{end}}
|
2020-11-26 19:33:28 +00:00
|
|
|
<a class="item {{if .user_exists}}active{{end}}"
|
2018-10-28 22:46:16 +00:00
|
|
|
data-tab="auth-link-signin-tab">
|
2022-06-27 20:58:46 +00:00
|
|
|
{{.locale.Tr "auth.oauth_signin_tab"}}
|
2020-11-26 19:33:28 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
2021-02-22 01:14:27 +00:00
|
|
|
</div>
|
|
|
|
<div class="ui middle very relaxed page grid">
|
|
|
|
<div class="column">
|
|
|
|
<div class="ui tab {{if not .user_exists}}active{{end}}"
|
|
|
|
data-tab="auth-link-signup-tab">
|
|
|
|
{{template "user/auth/signup_inner" .}}
|
|
|
|
</div>
|
|
|
|
<div class="ui tab {{if .user_exists}}active{{end}}"
|
|
|
|
data-tab="auth-link-signin-tab">
|
|
|
|
<div class="ui user signin container icon">
|
|
|
|
{{template "user/auth/signin_inner" .}}
|
2018-10-28 22:46:16 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-02-22 07:14:37 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-10-28 22:46:16 +00:00
|
|
|
|
2017-02-22 07:14:37 +00:00
|
|
|
{{template "base/footer" .}}
|