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