1
0
Fork 0
feedizer-php/htdocs/libraries/formsgeneration/templates/form_ajax_body.html.php
2015-11-13 23:51:46 +01:00

43 lines
671 B
PHP

<center><table summary="Input fields table">
<tr>
<th align="right"><?php $form->AddLabelPart(array("FOR"=>"description")); ?>:</th>
<td><?php $form->AddInputPart("description"); ?></td>
<?php
if(IsSet($verify["description"]))
{
?>
<td>[Verify]</td>
<?php
}
?>
</tr>
<tr>
<th align="right"><?php $form->AddLabelPart(array("FOR"=>"file")); ?>:</th>
<td><?php $form->AddInputPart("file"); ?></td>
<?php
if(IsSet($verify["file"]))
{
?>
<td>[Verify]</td>
<?php
}
?>
</tr>
<?php
if(!$doit)
{
?>
<tr>
<td colspan="3" align="center"><hr /></td>
</tr>
<tr>
<td colspan="3" align="center"><?php $form->AddInputPart("doit"); ?></td>
</tr>
<?php
}
?>
</table></center>