Files
crm-ms1/application/views/tache/form.php
2026-05-27 11:44:10 -04:00

37 lines
1.7 KiB
PHP

<div id="content">
<div class="row">
<section class="col col-3">
<label class="input">
<?php
$mem_champ = 'tach_aqui_id';
echo form_label($label[$mem_champ]);
?>
</label>
<label class="select">
<?php
echo $icon[$mem_champ];
echo form_dropdown($mem_champ, $select[$mem_champ]['choix'], $select[$mem_champ]['value']);
?>
<i>
</i>
</label>
</section>
<fieldset>
<section>
<label class="textarea">
<?php
$mem_champ = 'tach_note_demande';
echo $icon[$mem_champ];
echo form_textarea($input[$mem_champ]);
?>
</label>
</section>
</fieldset>
</div>
</div>