Plans & Pricing
Whether you're a startup in a garage or a global enterprise with more than 50,000 people, Pave has the data and workflows you need to drive business results. Compare our plans to begin transforming your entire compensation ecosystem.
Whether you're a startup in a garage or a global enterprise with more than 50,000 people, Pave has the data and workflows you need to drive business results. Compare our plans to begin transforming your entire compensation ecosystem.
tag) document.addEventListener('DOMContentLoaded', function() { // Get the form element const form = document.querySelector('[name="wf-form-Hero-50-Form"]'); if (form) { // Listen for the form submission form.addEventListener('submit', function(e) { // Get the email input value const emailInput = form.querySelector('[type="email"]'); if (emailInput && emailInput.value) { const email = encodeURIComponent(emailInput.value); // Store the redirect URL sessionStorage.setItem('redirectAfterSubmit', `https://app.pave.com/signup?email=${email}`); } }); // Check for Webflow's success state (when form div gets hidden and success div shows) const observer = new MutationObserver(function(mutations) { mutations.forEach(function(mutation) { // Look for the success message div becoming visible const successDiv = form.parentElement.querySelector('.w-form-done'); if (successDiv && successDiv.style.display !== 'none' && getComputedStyle(successDiv).display !== 'none') { const redirectUrl = sessionStorage.getItem('redirectAfterSubmit'); if (redirectUrl) { // Clear the stored URL sessionStorage.removeItem('redirectAfterSubmit'); // Redirect after a short delay (optional - gives user time to see success message) setTimeout(function() { window.location.href = redirectUrl; }, 500); // 500ms delay - adjust as needed } } }); }); // Start observing the form's parent for changes observer.observe(form.parentElement, { attributes: true, childList: true, subtree: true, attributeFilter: ['style', 'class'] }); } });