mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 13:01:15 +00:00
75b3645bc3
- Add the 'correct' styling for column on the link account page, this
follows what was done for the login/register page in 629ca22a97
.
- Move some if conditions to be outside of the container which allocates
space on the page, this ensures it's not being shown if it's not needed.
- Resolves #4844
35 lines
1.2 KiB
Go HTML Template
35 lines
1.2 KiB
Go HTML Template
{{template "base/head" .}}
|
|
<div role="main" aria-label="{{.Title}}" class="page-content user link-account">
|
|
<overflow-menu class="ui secondary pointing tabular top attached borderless menu secondary-nav">
|
|
<div class="overflow-menu-items tw-justify-center">
|
|
<!-- 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">
|
|
{{ctx.Locale.Tr "auth.oauth_signup_tab"}}
|
|
</a>
|
|
{{end}}
|
|
<a class="item {{if .user_exists}}active{{end}}"
|
|
data-tab="auth-link-signin-tab">
|
|
{{ctx.Locale.Tr "auth.oauth_signin_tab"}}
|
|
</a>
|
|
</div>
|
|
</overflow-menu>
|
|
<div class="ui middle very relaxed page grid">
|
|
<div class="column tw-flex tw-flex-col tw-gap-4 tw-max-w-2xl tw-m-auto">
|
|
<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" .}}
|