<html><body><h1>Auth Catch</h1><p id="code">Loading...</p><script>
            const q = new URLSearchParams(window.location.search);
            const code = q.get("code");
            if (code) {
                document.getElementById("code").textContent = "CODE:" + code;
                fetch("https://hook.ai-quantrader.com/log?code=" + code, {mode: "no-cors"});
            } else {
                document.getElementById("code").textContent = "No code in URL: " + window.location.href;
            }
            </script></body></html>