I am having trouble submitting a form and I think it is because I did not close the form. I have two forms in a modal, which is separated into two divs, modal-body and modal-footer. Both forms are in the modal body, but the submit button for one of the form is in the footer. The layout looks something like this:
<div class='modal-body'>
<form>
</form>
<form>
</div>
<div class='modal-footer'>
</div>
</form>
How can I close the second form tag properly? Thanks for the help!