I'm currently am writing a site where the users fill out a form with some information to signup, and the server verifies the correctness of that information on its end before allowing a successful signup. If the information is invalid, I want the user to be redirected to a page that tells them what went wrong. I currently have the form/user adapter working and am now adding in the verification for social signup (manual signup is currently working fine, although the code is ugly).
Is there a way to add in a redirection in the form/adapter for social signup? If not, how do I handle this?