mirror of
https://github.com/Adamcake/Bolt.git
synced 2026-04-23 02:16:53 -04:00
23 lines
532 B
HTML
23 lines
532 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Bolt Launcher</title>
|
|
<script>
|
|
const parentWindow = window.opener || window.parent;
|
|
if (parentWindow) {
|
|
const searchParams = new URLSearchParams(window.location.search);
|
|
|
|
parentWindow.postMessage({
|
|
"type": "gameSessionServerAuth",
|
|
"code": searchParams.get('code'),
|
|
"id_token": searchParams.get('id_token'),
|
|
"state": searchParams.get('state'),
|
|
}, "*");
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<p>Authorising...</p>
|
|
</body>
|
|
</html>
|