summaryrefslogtreecommitdiffstats
path: root/templates/user/auth/link_account.tmpl
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-10-11 10:27:00 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-10-11 10:27:00 +0000
commit65aa53fc52ff15efe54df4147564828d535837f8 (patch)
tree31c51dad04fdcca80e6d3043c8bd49d2f1a51f83 /templates/user/auth/link_account.tmpl
parentInitial commit. (diff)
downloadforgejo-65aa53fc52ff15efe54df4147564828d535837f8.tar.xz
forgejo-65aa53fc52ff15efe54df4147564828d535837f8.zip
Adding upstream version 8.0.3.HEADupstream/8.0.3upstreamdebian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'templates/user/auth/link_account.tmpl')
-rw-r--r--templates/user/auth/link_account.tmpl34
1 files changed, 34 insertions, 0 deletions
diff --git a/templates/user/auth/link_account.tmpl b/templates/user/auth/link_account.tmpl
new file mode 100644
index 00000000..8dd49ccd
--- /dev/null
+++ b/templates/user/auth/link_account.tmpl
@@ -0,0 +1,34 @@
+{{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">
+ <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" .}}