Let's say I have an Employee, and for the creation of such employee in my web application I want to follow the next flow.
Create <-> Verify -> Save
In the create page the user can set up a bunch of properties, In the verify page the user is presented with two options "make changes" and "verify" In the save page the user is presented with a confirmation page
I have two approaches to this:
Use Javascript to change "action" and "method" of the form.
Handle the logic on the action (which feels kind of clunky at least with asp.net mvc)
Which do you prefer ?
Is there a better way to do this?