I'm trying to implement 2 forms on one page: one is used for login/password and another is used for contact us. Building the forms and puttign them both in a template is not a problem.
Where the problem occurs is when validation fails, like the password field was accidently not filled in on submit. When that happens, the login/password form submits, but instead of submitting to the same page and having both FormBuilder forms with the submission errors at the top of the page, it submits to index.php and lists the submission errors at the top of the page along with the first form only. The second form doesn't appear anymore and the page layout is broken because of it.
Is there any way to have both these forms on the same page and handle error checking for each separately? If not with FormBuilder, anyone have suggestions on how to accomplish this? Hopefully not javascripting
