Compare commits

...

1 Commits

Author SHA1 Message Date
Moko Consulting 4dc8ca7223 fix(auth): login logo points at missing login-logo.png -> use logo.svg
Universal: Auto Version Bump / Version Bump (push) Successful in 21s
Universal: PR Check / Branch Policy (pull_request) Successful in 2s
Generic: Project CI / Lint & Validate (pull_request) Successful in 43s
Universal: PR Check / Validate PR (pull_request) Successful in 14s
Universal: PR Check / Secret Scan (pull_request) Successful in 1m34s
Branch Cleanup / Delete merged branch (pull_request) Has been skipped
RC Revert / Rename rc/ back to dev/ (pull_request) Has been skipped
Generic: Project CI / Tests (pull_request) Has been cancelled
Universal: PR Check / Build RC Package (pull_request) Has been cancelled
Universal: PR Check / Report Issues (pull_request) Has been cancelled
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
2026-07-18 18:28:54 -05:00
+2 -1
View File
@@ -1,6 +1,7 @@
<div class="ui container fluid">
<div class="tw-text-center tw-mb-4">
<img src="{{AssetUrlPrefix}}/img/login-logo.png" style="max-width: 220px; max-height: 80px; object-fit: contain;" onerror="this.style.display='none'">
<img src="{{AssetUrlPrefix}}/img/logo.svg" alt="{{ctx.Locale.Tr "logo"}}" style="max-width: 220px; max-height: 80px; object-fit: contain;" onerror="this.src='{{AssetUrlPrefix}}/img/logo.png'">
</div>
{{if or (not .LinkAccountMode) (and .LinkAccountMode .LinkAccountModeSignIn)}}
{{template "base/alert" .}}