mirror of
https://github.com/go-gitea/gitea.git
synced 2024-10-31 08:37:35 -04:00
b8451190d8
* Show either sign up OR sign in * disambiguate fresh start from adding recovery options * use tabs to switch between account link flows * add active to tab body as well * changes as per discussion * handle specific error; fix missing err typo
34 lines
968 B
Cheetah
34 lines
968 B
Cheetah
{{template "base/head" .}}
|
|
|
|
<div class="user link-account">
|
|
<div class="ui middle very relaxed page grid">
|
|
<div class="column">
|
|
|
|
<div class="ui tabular menu">
|
|
<!-- TODO handle .ShowRegistrationButton once other login bugs are fixed -->
|
|
<div class="item {{if not .user_exists}}active{{end}}"
|
|
data-tab="auth-link-signup-tab">
|
|
{{.i18n.Tr "auth.oauth_signup_tab"}}
|
|
</div>
|
|
<div class="item {{if .user_exists}}active{{end}}"
|
|
data-tab="auth-link-signin-tab">
|
|
{{.i18n.Tr "auth.oauth_signin_tab"}}
|
|
</div>
|
|
</div>
|
|
|
|
<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" .}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|