Form button link to another page

Hello, I’m creating a website using wix, and I’ve created a sign up page. When you enter your information right an account is created, and you are redirect to the landing page. I would want that the sign up button redirect new users to another page of my website, is that possible? I’ve been through documentation and forums post but didn’t found something useful, thanks for the help.

Depends on how you have setup your signup/login and if your members are accepted automatically or have to wait for manual approval…

If you have used the Default or Custom methods as show here.
https://support.wix.com/en/article/about-the-member-signup-form

Then you can’t edit the signup forms themselves as they are already setup, you would have to use the Wix Users API and the onLogin function from it.
https://www.wix.com/corvid/reference/wix-users.html#onLogin

Then you would need to add the link to the page that you want the user to go to after they have logged in.
https://www.wix.com/corvid/reference/wix-location.html#to

However, if you have used the Corvid method for this and you have your own code for your signup or login lightbox.

Then you can simply set the lightbox to close and then move the user onto the needed page.
https://www.wix.com/corvid/reference/wix-window.lightbox.html#close
https://www.wix.com/corvid/reference/wix-location.html#to

You can see about this in a recent post here.
https://www.wix.com/corvid/forum/community-discussion/download-button-help

Thank you very much for your reply, I was completely stuck. Have a good day!