Multiple Forms, Same Template

Irma can easily allow to use more than one form posted to the same template. To enable that, define a hidden field with each of the forms, such as:
<input type="hidden" name="firstform" value="1">
and
<input type="hidden" name="secondform" value="1">
Evaluating the firstform and the secondform variables will yield the form that was used for the post.
<!--SCRIPT--
 £firstform~[Posted from the first form.] 
 £secondform~[Posted from the second form.]
-->

You can run, download and view the source of a demo performing actions similar to those described in this section from http://irma.vestris.com/docs/demos/demo2-form.html and http://irma.vestris.com/docs/demos/demo2-template.html .