mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 15:19:09 +01:00
b1cf7f4df1
* Add class to page content to unify top margin Previously pages would individually set this margin but some didn't so content would stick to the header without any space. Resolve this by adding a new class that is added on all pages. The only place where we remove this margin again is on the pages with menu or wrapper in the header. * fix admin notices * fix team pages * fix loading segment on gitgraph for arc-green * fix last missing case Co-authored-by: techknowlogick <techknowlogick@gitea.io>
33 lines
1 KiB
Handlebars
33 lines
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 -->
|
|
<a class="item {{if not .user_exists}}active{{end}}"
|
|
data-tab="auth-link-signup-tab">
|
|
{{.i18n.Tr "auth.oauth_signup_tab"}}
|
|
</a>
|
|
<a class="item {{if .user_exists}}active{{end}}"
|
|
data-tab="auth-link-signin-tab">
|
|
{{.i18n.Tr "auth.oauth_signin_tab"}}
|
|
</a>
|
|
</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>
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|