21 lines
1.3 KiB
PHP
Executable File
21 lines
1.3 KiB
PHP
Executable File
<form id="formData">
|
|
<legend id="titre_formData">Modification des données</legend>
|
|
<INPUT class="sr-only" TYPE="text" id = "id" name = "id" value="<?=$tableauajustement['id']?>">
|
|
<table class="table table-responsive table-condensed">
|
|
<tbody>
|
|
<tr>
|
|
<td width="5%" align="center">Minimal</td>
|
|
<td width="20%" ><INPUT class="form-control" TYPE="number" step="0.01" id="spMin" NAME="spMin" required AUTOCOMPLETE="OFF" autofocus value="<?= $this->nettoyer($tableauajustement['spMin']); ?>" ></td>
|
|
|
|
<td width="5%" align="center">Maximal</td>
|
|
<td width="20%" ><INPUT class="form-control" TYPE="number" step="0.01" id="spMax" NAME="spMax" required AUTOCOMPLETE="OFF" value="<?= $this->nettoyer($tableauajustement['spMax']); ?>"></td>
|
|
|
|
<td width="5%" align="center">Taux Ajustement</td>
|
|
<td width="20%" ><INPUT class="form-control" TYPE="number" step="0.01" id="tauxAjustement" NAME="tauxAjustement" value="<?= $this->nettoyer($tableauajustement['tauxAjustement']); ?>"></td>
|
|
|
|
<td width="5%" align="center">Ordre</td>
|
|
<td width="20%" ><INPUT class="form-control" TYPE="number" id="ordre" NAME="ordre" value="<?= $this->nettoyer($tableauajustement['ordre']); ?>"></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form> |