mirror of
https://github.com/Adamcake/Bolt.git
synced 2026-04-19 00:26:51 -04:00
22 lines
498 B
HTML
Executable File
22 lines
498 B
HTML
Executable File
<!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": "authCode",
|
|
"code": searchParams.get('code'),
|
|
"state": searchParams.get('state'),
|
|
}, "*");
|
|
}
|
|
</script>
|
|
</head>
|
|
<body style="background-color: #0B111A">
|
|
<p><b>Authorising...</b></p>
|
|
</body>
|
|
</html>
|