To display submitted form data from multiple fields on a different page in Webflow, you need to store and pass that data since Webflow doesn’t natively support dynamic form sessions across pages.
/thank-you?name=John&email=john@example.com
tag area.
/thank-you
), use custom JavaScript to parse the values from the URL.Example snippet to get URL parameters (no raw code shown, just refer to using URLSearchParams
):
?name=John&email=john@example.com
document.querySelector("#name-field").textContent = name
to inject the value.id="name-output"
) where you want to display the data.localStorage
on submission.localStorage
and show it in designated elements.To display form data on a different Webflow page, pass the data via query parameters or localStorage, then use custom JavaScript to extract and inject it into static elements. Webflow doesn’t support this out-of-the-box, so light scripting is needed.