Start your All-Access Pass to unlock this challenge
After a successful form submit, we always redirect the user to another page. Why?
Redirecting prevents the user from accidentally re-submitting the form
POST requests (which most form submits are) cannot have responses with content, so we need to redirect to another page
POST
Redirecting prevents the form from being re-populated with the same data
Some older browsers cannot properly handle a form submit, unless it redirects