32 lines
1.3 KiB
PHP
Executable File
32 lines
1.3 KiB
PHP
Executable File
<form id="formData">
|
|
<legend id="titre_formData">Ajouter des données</legend>
|
|
<table class="table table-responsive table-condensed">
|
|
<tbody>
|
|
<tr>
|
|
<td width="5%" align="center">Type Intermédiaire</td>
|
|
<td width="20%">
|
|
<select name="codeTypeApporteur" id="codeTypeApporteur" class="form-control" required AUTOCOMPLETE="OFF" >
|
|
<?= liste_options($typeapporteur,'',false) ?>
|
|
</select>
|
|
</td>
|
|
|
|
<td width="5%" align="center">Etape Police</td>
|
|
<td width="20%">
|
|
<select name="codeEtape" id="codeEtape" class="form-control" required AUTOCOMPLETE="OFF" >
|
|
<?= liste_options($etapepolice,'',false) ?>
|
|
</select>
|
|
</td>
|
|
|
|
<td width="5%" align="center">Type Contrat</td>
|
|
<td width="20%">
|
|
<select name="codeTypeContrat" id="codeTypeContrat" class="form-control" required AUTOCOMPLETE="OFF" >
|
|
<?= liste_options($typecontrat,'',false) ?>
|
|
</select>
|
|
</td>
|
|
|
|
<td width="5%" align="center">Taux Commission</td>
|
|
<td width="20%" ><INPUT class="form-control" TYPE="number" step="0.01" id="tauxCommission" NAME="tauxCommission"></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|