17 lines
961 B
PHP
Executable File
17 lines
961 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" required AUTOCOMPLETE="OFF" NAME="tauxAjustement" value="0.00"></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|