26 lines
1.5 KiB
PHP
26 lines
1.5 KiB
PHP
<form id="formData">
|
|
<legend id="titre_formData">Modification des données</legend>
|
|
<INPUT class="sr-only" TYPE="text" id = "id" name = "id" value="<?=$moyenpaiement['id']?>">
|
|
<table class="table table-responsive table-condensed">
|
|
<tbody>
|
|
<tr>
|
|
<td width="5%" align="center" class="required">Code</td>
|
|
<td width="10%" ><INPUT class="form-control majuscule" TYPE="text" id="codeMoyenPaiement" NAME="codeMoyenPaiement" required AUTOCOMPLETE="OFF" autofocus value="<?= $this->nettoyer($moyenpaiement['codeMoyenPaiement']); ?>" ></td>
|
|
|
|
<td width="5%" align="center" class="required">Libellé</td>
|
|
<td width="20%" ><INPUT class="form-control majuscule" TYPE="text" id="libelle" NAME="libelle" required AUTOCOMPLETE="OFF" value="<?= $this->nettoyer($moyenpaiement['libelle']); ?>"></td>
|
|
|
|
<td width="5%" align="center" class="required">Type</td>
|
|
<td width="20%">
|
|
<select name="codeTypePaiement" id="codeTypePaiement" class="form-control" required AUTOCOMPLETE="OFF" >
|
|
<?= liste_options($typepaiement,$this->nettoyer($moyenpaiement['codeTypePaiement']),true) ?>
|
|
</select>
|
|
</td>
|
|
|
|
<td width="5%" align="center">N° Compte</td>
|
|
<td width="20%" ><INPUT class="form-control majuscule" TYPE="text" id="numeroCompte" NAME="numeroCompte" value="<?= $this->nettoyer($moyenpaiement['numeroCompte']); ?>"></td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|
|
</form>
|