production/Vue/Ajaxtbajoutertableauajustementgarant/index.php
2025-12-01 16:12:12 +00:00

17 lines
963 B
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"><?= _("S/P Minimum")?></td>
<td width="10%" ><INPUT class="form-control" TYPE="number" step="0.01" id="spMin" NAME="spMin" readonly value="<?= $spMin ?>"></td>
<td width="10%" align="center" class="required"><?= _("S/P Maximum")?></td>
<td width="10%" ><INPUT class="form-control" TYPE="number" step="0.01" id="spMax" NAME="spMax" required AUTOCOMPLETE="OFF" onblur="javascript:controle_spmax();"></td>
<td width="10%" align="center" class="required"><?= _("Taux")." (%)"?></td>
<td width="10%" ><INPUT class="form-control" TYPE="number" step="0.01" id="tauxAjustement" NAME="tauxAjustement" required AUTOCOMPLETE="OFF" value="0.00"></td>
</tr>
</tbody>
</table>
</form>