From 4dc8ca7223798c6f71326bccf6725c1496520094 Mon Sep 17 00:00:00 2001 From: Moko Consulting Date: Sat, 18 Jul 2026 18:28:54 -0500 Subject: [PATCH] fix(auth): login logo points at missing login-logo.png -> use logo.svg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit templates/user/auth/signin_inner.tmpl referenced /assets/img/login-logo.png, which is never shipped (404) — so the sign-in page rendered with no logo (the onerror just hid it). Use the existing logo.svg (with a logo.png fallback and alt text), matching templates/base/head_navbar.tmpl. Note: the sign-in a11y/theme-toggle icons are NOT a code bug — Font Awesome 7 is vendored (web_src/css/vendor/fontawesome) and @imported in index.css:6; they render blank only on git.dev because that container runs the stale stable-395 image (pre-theme). Fixed by deploying current dev (see #816), not a template change. Authored-by: Moko Consulting --- templates/user/auth/signin_inner.tmpl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates/user/auth/signin_inner.tmpl b/templates/user/auth/signin_inner.tmpl index 3c6ea78f78..27cfa3393f 100644 --- a/templates/user/auth/signin_inner.tmpl +++ b/templates/user/auth/signin_inner.tmpl @@ -1,6 +1,7 @@
- + {{ctx.Locale.Tr +
{{if or (not .LinkAccountMode) (and .LinkAccountMode .LinkAccountModeSignIn)}} {{template "base/alert" .}} -- 2.52.0