From a UI standpoint, I'm trying to decide if it's worth integrating a 'confirmation' page when a user submits a form. Basically they submit it, then the next page says "this is the information you provided, if you are sure, click here to confirm and submit".
Without using JS, this basically requires submitting the form twice. Submit the form to the verification page, and capture those same form variables. When the user confirms, then submit those variables to the function that deals with the submission. It's somewhat of a messy proposal, as you have dual submission pages, additional server requests, etc.
With JS/ajax, it would be much easier, but regardless, from a UI perspective, is it still necessary or desired? After you fill out a form, don't people normally review the information before they submit it the first time?
For very sensitive data (like maybe health/medical where every detail can be critical) I could see this being a necessity, but for your typical blog, social media page, or ecommerce site, is it necessary, or just a nuisance?
Without using JS, this basically requires submitting the form twice. Submit the form to the verification page, and capture those same form variables. When the user confirms, then submit those variables to the function that deals with the submission. It's somewhat of a messy proposal, as you have dual submission pages, additional server requests, etc.
With JS/ajax, it would be much easier, but regardless, from a UI perspective, is it still necessary or desired? After you fill out a form, don't people normally review the information before they submit it the first time?
For very sensitive data (like maybe health/medical where every detail can be critical) I could see this being a necessity, but for your typical blog, social media page, or ecommerce site, is it necessary, or just a nuisance?
Last edited:
