Get In Touch

We'd love to hear from you. Our team is here to help.

Contact Info

Reach out to us through any of these channels. Our team usually responds within 24 hours.

Email Us

thefiftyfest@gmail.com

WhatsApp

07933909595

Location

SPEEDAGE PVT LTD, 120E Melton Rd, Leicester, LE2 5ED, United Kingdom

Social Media
// Add spinner to submit buttons on form submit document.querySelectorAll('form').forEach(form => { form.addEventListener('submit', function () { const btn = this.querySelector('button[type="submit"]'); if (btn) { btn.innerHTML = `Loading...`; btn.style.pointerEvents = 'none'; btn.style.opacity = '0.7'; } }); });