Smart form redirect to page

Hello everyone, is there a way to redirect the user to another page after he submit a form made out with Bootstrap Studio Smart Forms? Thanks!

If you give your form an ID then you can add this in a js file
document.getElementById(“myFormID”).addEventListener(“reset”, myThankYou);
function myThankYou() {
window.location.replace(“your-page-here.html”);
}

Hi, thank you for your answer, in the end I didn’t use Bootstrap Studio Smart Forms for my project for a few other reasons but what you pointed out would certainly have worked for the purpose.