From e6a4dfccf024be5eadc66041c5cf17ecf04041b4 Mon Sep 17 00:00:00 2001 From: Jonathan Miller Date: Mon, 25 May 2026 23:51:37 -0500 Subject: [PATCH] fix(ui): add help link to footer, show login logo on signin page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Help link added to footer right-links (next to API and Licenses) - Login logo (login-logo.png) now shown on the signin page, not just the home page. Hidden via onerror when not uploaded. - Landing page is set to 'login' so home.tmpl never renders — the logo needed to be on signin_inner.tmpl instead. Co-Authored-By: Claude Opus 4.6 (1M context) --- templates/base/footer_content.tmpl | 1 + templates/user/auth/signin_inner.tmpl | 3 +++ 2 files changed, 4 insertions(+) diff --git a/templates/base/footer_content.tmpl b/templates/base/footer_content.tmpl index 9408c37ca7..c6f23682d0 100644 --- a/templates/base/footer_content.tmpl +++ b/templates/base/footer_content.tmpl @@ -36,6 +36,7 @@ {{ctx.Locale.Tr "licenses"}} {{if .EnableSwagger}}API{{end}} + {{ctx.Locale.Tr "help"}} {{template "custom/extra_links_footer" .}} diff --git a/templates/user/auth/signin_inner.tmpl b/templates/user/auth/signin_inner.tmpl index 864e0993d6..3c6ea78f78 100644 --- a/templates/user/auth/signin_inner.tmpl +++ b/templates/user/auth/signin_inner.tmpl @@ -1,4 +1,7 @@
+
+ +
{{if or (not .LinkAccountMode) (and .LinkAccountMode .LinkAccountModeSignIn)}} {{template "base/alert" .}} {{end}}