prestation/Vue/Ajaxtbajoutertableauajustement/index.php
2025-12-05 10:42:46 +00:00

24 lines
1.1 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="10%" align="center" class="required">Garant</td>
<td width="30%" >
<SELECT class="form-control" id="codeGcAssureur" NAME="codeGcAssureur" onChange="tauxCommissionGarant()" required AUTOCOMPLETE="OFF" autofocus>
<?php liste_options($garants,""); ?>
</SELECT>
</td>
<td width="10%" align="center">Sinistre/Prime Minimal</td>
<td width="10%" ><INPUT class="form-control" TYPE="number" step="0.01" id="spMin" NAME="spMin" ></td>
<td width="10%" align="center">Sinistre/Prime Maximal</td>
<td width="10%" ><INPUT class="form-control" TYPE="number" step="0.01" id="spMax" NAME="spMax" ></td>
<td width="10%" align="center">Taux Ajustement</td>
<td width="10%" ><INPUT class="form-control" TYPE="number" step="0.01" id="tauxAjustement" NAME="tauxAjustement"></td>
</tr>
</tbody>
</table>
</form>