Files
CRM_AGENTES_CARGA/frontend/static/silent-check-sso.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>