Congratulations on successfully placing your AD:VANTAGE order!
We’ll keep you updated on the status of your order.
// Replace with your own publishable key: https://dashboard.stripe.com/test/apikeys
var PUBLISHABLE_KEY = "pk_live_M5ZKE3kVjhcbyau1GJTgh3c9";
if (PUBLISHABLE_KEY === "pk_live_M5ZKE3kVjhcbyau1GJTgh3c9") {
console.log(
"Replace the hardcoded publishable key with your own publishable key: https://dashboard.stripe.com/test/apikeys"
);
}
var stripe = Stripe(PUBLISHABLE_KEY);
var urlParams = new URLSearchParams(window.location.search);
if (urlParams.has("session_id")) {
document.getElementById("session").textContent = urlParams.get(
"session_id"
);
}