Fix login screen not showing on sign-out

Remove !important from #auth-screen CSS so the inline style set by
exitApp() can override it and display the login form after logout.
This commit is contained in:
Daniel Onyejesi 2026-03-24 11:24:26 -04:00
parent 747fc3322a
commit 3ef16f6c6a

View file

@ -22,7 +22,7 @@
<link rel="apple-touch-icon" sizes="192x192" href="/icons/icon-192.png">
<link rel="apple-touch-icon" sizes="512x512" href="/icons/icon-512.png">
<!-- Auth screen hidden by default — auth.js shows it only when no valid session exists -->
<style>#auth-screen { display: none !important; }</style>
<style>#auth-screen { display: none; }</style>
</head>
<body>