fix: style OIDC login button with divider line and icon

Replace the plain boxy btn-secondary with a modern outlined button
that has a login icon, horizontal "or" divider, and hover effects.
This commit is contained in:
2026-04-09 17:09:59 -06:00
parent da5d436432
commit caf75fbb3f
3 changed files with 56 additions and 3 deletions
+1 -1
View File
@@ -98,7 +98,7 @@ async function loadOidcLoginButton() {
const cfg = await res.json();
const section = document.getElementById('oidc-login-section');
if (cfg.enabled) {
document.getElementById('btn-oidc-login').textContent = cfg.button_label || 'Sign in with SSO';
document.getElementById('btn-oidc-login-label').textContent = cfg.button_label || 'Sign in with SSO';
section.hidden = false;
} else {
section.hidden = true;