- Added session manager to handle token refresh and user activity tracking. - Introduced session timeout warning dialog for user inactivity. - Updated authentication token handling in cookies with security policies. - Created server-side endpoint for silent refresh of access tokens using HttpOnly cookies. - Added silent check SSO HTML page for Keycloak integration.
15 lines
391 B
HTML
15 lines
391 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Silent SSO Check</title>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
// Required by Keycloak JS for silent SSO check.
|
|
// This page is loaded in a hidden iframe; it posts the full URL back
|
|
// to the parent window so Keycloak can parse the SSO response.
|
|
parent.postMessage(location.href, location.origin);
|
|
</script>
|
|
</body>
|
|
</html>
|