{{form_response.status}}

{{form_response.message}}

{{url.offer}}

at
{{url.restaurant}}

Exclusive to {{url.name|Member's Only...}}

{{form_response.message2|Quick, claim your pass now - or you'll lose it!}}

{{form_response.expiry|Click button below to claim ⬇️. }}

Loading...
// Functions to show/hide the loading icon function showLoading() { document.getElementById("loading-container").style.display = "block"; } function hideLoading() { document.getElementById("loading-container").style.display = "none"; } // Example API request to trigger spinner showLoading(); // Show spinner when request starts fetch("your-api-endpoint") // Replace with actual endpoint .then(response => response.json()) .then(data => { hideLoading(); // Hide spinner when response is received console.log(data); // Process response data });