Redirect to a thank-you page after form submission
Show a custom confirmation page instead of a plain JSON response.
- 1
Add a redirect field
Include `<input type='hidden' name='redirect' value='https://yoursite.com/thanks' />` in your form.
- 2
Create your thank-you page
Build a simple /thanks page on your site.
- 3
Test it
Submit the form — the browser follows the redirect to your thank-you URL.
FAQ
FormLoom returns a JSON response. For programmatic (AJAX/fetch) submissions that's fine; for plain HTML forms you need the redirect.