make a wish

Turn your wishes into epic gifts with the magic of crowdfunding! Wishlist brings your community together to make your dreams come true—one awesome contribution at a time.

Hey, Wishmaker! Let's get to know you better...

Email address *
Password *
Phone no. *

Let's talk about the Wish!

What's the occasion? *
If Others, let us know the occasion
Start of Collection * ?
Select Start Date
Close of Collection * ?
Select Close Date

Wish receiver

Recipient name *
Recipient email address ?

A special thank you message

Take a moment to express your gratitude. A heartfelt thank you goes a long way in showing your contributors how much their support means to you!
Your wish list has been submitted! Stay tuned, we’ll email you with updates soon!
Oops! Something went wrong, let’s try that again!
Top
document.addEventListener("DOMContentLoaded", function() { const form = document.getElementById('wf-form-Wishlist-Form'); if (form) { form.addEventListener('submit', async function(event) { event.preventDefault(); event.stopImmediatePropagation(); const formData = new FormData(form); const data = Object.fromEntries(formData.entries()); try { const response = await fetch('https://hook.eu1.make.com/YOUR_FULL_8SK_URL', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(data) }); const result = await response.json(); if (result.redirectUrl) { window.location.href = result.redirectUrl; } } catch (err) { console.error('Error:', err); } }, true); // <-- 'true' makes it capture phase, fires before Webflow } });