Coming Soon
Premium supplements for peak performance.
// Show success message if redirected back with success parameter
const urlParams = new URLSearchParams(window.location.search);
if (urlParams.get('success') === 'true') {
document.querySelector('.notify-form').style.display = 'none';
document.getElementById('successMessage').style.display = 'block';
} body: JSON.stringify({ email })
})
.then(response => response.json())
.then(data => {
alert('Thank you! We\'ll notify you when we launch.');
document.getElementById('emailInput').value = '';
})
.catch(error => {
alert('Thanks! We\'ll keep you updated.');
document.getElementById('emailInput').value = '';
});
});