d55a0b7238
* Refactor `i18n` to `locale` - Currently we're using the `i18n` variable naming for the `locale` struct. This contains locale's specific information and cannot be used for general i18n purpose, therefore refactoring it to `locale` makes more sense. - Ref: https://github.com/go-gitea/gitea/pull/20096#discussion_r906699200 * Update routers/install/install.go
34 lines
1.1 KiB
Handlebars
34 lines
1.1 KiB
Handlebars
{{template "base/head" .}}
|
|
<div class="page-content user link-account">
|
|
<div class="ui secondary pointing tabular top attached borderless menu new-menu navbar">
|
|
<div class="new-menu-inner">
|
|
<!-- TODO handle .ShowRegistrationButton once other login bugs are fixed -->
|
|
{{if not .AllowOnlyInternalRegistration}}
|
|
<a class="item {{if not .user_exists}}active{{end}}"
|
|
data-tab="auth-link-signup-tab">
|
|
{{.locale.Tr "auth.oauth_signup_tab"}}
|
|
</a>
|
|
{{end}}
|
|
<a class="item {{if .user_exists}}active{{end}}"
|
|
data-tab="auth-link-signin-tab">
|
|
{{.locale.Tr "auth.oauth_signin_tab"}}
|
|
</a>
|
|
</div>
|
|
</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" .}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|