| description |
|---|
You can customize the success / thank you page as you like. See the options below. |
{% hint style="info" %} Tip: To use your own thank you page, visit redirection.md page. {% endhint %}
Default Success Page
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>To redirect the success page to your own website or another different URL, please use the custom redirection. See this guide redirection.mdfor more details.
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-and-javascript.mdpage for sample code.
.png)