Success / Thank You Page

You can customize the success / thank you page as you like. See the options below.

Tip: To use your own thank you page, visit Custom Redirection page.

Customize Title & Description

To customize the title and description of the success page after the form submission, use the title and desc params to the redirect URL.

<input 
type="hidden" 
name="redirect" 
value="https://web3forms.com/success?title=My%20Text&desc=Custom%20Description" />

Fix Stale Form Data after clicking "Go Back"

You might have noticed, after successful form submission, the user will show success page as shown above. However, once user clicked the "Go Back" button, the contact form fileds will still show the form data. it will not clear. In that case, make sure you add the following code to fix that.

<script>
    window.onload = function() {
        // Reset the form fields when the page loads
        document.getElementById("form").reset();
    };
</script>

Redirect to your your own Website / URL

To redirect the success page to your own website or another different URL, please use the custom redirection. See this guide Custom Redirectionfor more details.

Show Success Message on the Same Page (Do not redirect)

To skip redirection after the contact form submission and instead, if you want to show a success message on the same page, you can use the Javascript Method or similar. See HTML & JavaScriptpage for sample code.

Last updated