If you want your form cleared after submission so that if users click the "Go Back" link the content is removed add the following Javascript to your site.
window.onbeforeunload = () => {
for(const form of document.getElementsByTagName('form')) {
form.reset();
}
}