
Request Your Customized Lifestyle Plan
Complete this brief request so we can design your personalized SlumbyrWell plan. We’ll follow up within 1–2 business days.
Complete this brief request so we can design your personalized SlumbyrWell plan. We’ll follow up within 1–2 business days.
After-submit redirect: If your platform allows a custom redirect/thank-you, set it to /thank-you-custom-plan
(or your preferred page). You can also add the script below to redirect after a successful submission.
<script>
// Add this AFTER your form handler confirms success
// For simple static sites using Netlify or Formspree, you can place this inline and rely on the platform's success page.
// If you want an automatic redirect after form submit completes:
const form = document.getElementById('sw-request');
form.addEventListener('submit', function(){
// Optional: show a quick loading state
setTimeout(function(){
window.location.href = '/thank-you-custom-plan';
}, 400);
});
</script>