SIGN UP

LOGIN

You need to sign in or sign up before continuing.
`); const res = await fetch("https://www.docs-capp.com/generate-token", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ email: "Kajabi User", role: "Trial" }) }); const data = await res.json(); if (!data.token) throw new Error("No token received"); newTab.location.href = `https://www.docs-capp.com/auth/kajabi-login?token=${data.token}`; setTimeout(function () { window.addEventListener("beforeunload", function () { navigator.sendBeacon( "https://www.docs-capp.com/invalidate-token", JSON.stringify({ token: data.token }) ); }); }, 5000); } catch (err) { console.error(err); alert("Something went wrong. Please try again."); } finally { btn.textContent = "Visit CAPP"; btn.style.pointerEvents = "auto"; } }); }); });