14 lines
303 B
HTML
14 lines
303 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Silent SSO Check</title>
|
|
<script>
|
|
// This page is used for silent token refresh with Keycloak
|
|
parent.postMessage(location.href, location.origin)
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<!-- This page intentionally left blank -->
|
|
</body>
|
|
</html>
|