28 lines
1.7 KiB
PHP
Executable File
28 lines
1.7 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="<?=$modepaiement['id']?>">
|
|
<table class="table table-responsive table-condensed">
|
|
<tbody>
|
|
<tr>
|
|
<td width="5%" align="center" class="required">Code</td>
|
|
<td width="5%" ><INPUT class="form-control majuscule" TYPE="text" id="codeModePaiement" NAME="codeModePaiement" required AUTOCOMPLETE="OFF" autofocus value="<?= $this->nettoyer($modepaiement['codeModePaiement']); ?>" ></td>
|
|
|
|
<td width="5%" align="center" class="required">Libellé</td>
|
|
<td width="24%" ><INPUT class="form-control majuscule" TYPE="text" id="libelle" NAME="libelle" required AUTOCOMPLETE="OFF" value="<?= $this->nettoyer($modepaiement['libelle']); ?>"></td>
|
|
|
|
<td width="5%" align="center" class="required">Libellé Eng</td>
|
|
<td width="24%" ><INPUT class="form-control majuscule" TYPE="text" id="libelleEng" NAME="libelleEng" value="<?= $this->nettoyer($modepaiement['libelleEng']); ?>" required AUTOCOMPLETE="OFF" ></td>
|
|
|
|
<td width="5%" align="center">Type</td>
|
|
<td width="14%" >
|
|
<select name="codeTypePaiement" id="codeTypePaiement" class="form-control">
|
|
<?= liste_options($typepaiement,$this->nettoyer($modepaiement['libelleEng']),true) ?>
|
|
</select>
|
|
</td>
|
|
|
|
<td width="5%" align="center">Ordre</td>
|
|
<td width="8%" ><INPUT class="form-control text-center" TYPE="number" min="0" value="<?= $this->nettoyer($modepaiement['ordre']); ?>" id="ordre" NAME="ordre" onBlur="controle_numerique(this);"></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|