NAM A2 Sync

This commit is contained in:
Robin E.R. Davies
2026-05-12 12:31:21 -04:00
parent 44db94a955
commit c456e5187b
39 changed files with 5086 additions and 2206 deletions
+27
View File
@@ -0,0 +1,27 @@
<html>
<head>
<meta charset="UTF-8">
<title>T3K Response</title>
<script>
window.opener.postMessage(
{
type: "t3k_response",
uri: window.location.href,
storedState: sessionStorage.getItem('t3k_state'),
codeVerifier: sessionStorage.getItem('t3k_code_verifier')
}, '*'
);
function returnResponse() {
window.opener.postMessage(
{
type: "t3k_response",
uri: window.location.href,
storedState: sessionStorage.getItem('t3k_state'),
codeVerifier: sessionStorage.getItem('t3k_code_verifier')
}, '*'
);
}
</script>
</head>
<body style="background: #000000" onload="returnResponse()"></body>
</html>