Added basic oauth module structure (wip)

- Added struct for oauth
- Added interception handler for Zoraxy SSO
- Added user structure for SSO
This commit is contained in:
Toby Chui
2024-09-12 10:55:01 +08:00
parent 3392013a5c
commit 5c56da1180
21 changed files with 1644 additions and 13 deletions

View File

@@ -614,6 +614,29 @@ body{
background: var(--theme_green) !important;
}
/*
SSO Panel
*/
.ssoRunningState{
padding: 1em;
border-radius: 1em !important;
}
.ssoRunningState .ui.header, .ssoRunningState .sub.header{
color: white !important;
}
.ssoRunningState:not(.enabled){
background: var(--theme_red) !important;
}
.ssoRunningState.enabled{
background: var(--theme_green) !important;
}
/*
Static Web Server
*/