<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<title>Shaheen Order</title>

 

<script>

const urlParams = new URLSearchParams(window.location.search);

const product = urlParams.get("product") || "";

 

window.location.href =

"https://script.google.com/macros/s/AKfycbwN1EwMqsP6-Nk4WaoZ7RAWN1IuUVt8uKWn9RqR4NmHSL8tuWhXp7i_NK2zMB-EftIEhQ/exec?product="

+ encodeURIComponent(product);

</script>

 

</head>

 

<body>

Redirecting...

</body>

</html>