prestation/Vue/Ajaxtbmodifiertypepaiement/index.php
2025-12-05 10:42:46 +00:00

18 lines
1.1 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="<?=$typepaiement['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="codeTypePaiement" NAME="codeTypePaiement" required AUTOCOMPLETE="OFF" autofocus value="<?= $this->nettoyer($typepaiement['codeTypePaiement']); ?>" ></td>
<td width="5%" align="center" class="required">Libellé</td>
<td width="28%" ><INPUT class="form-control majuscule" TYPE="text" id="libelle" NAME="libelle" required AUTOCOMPLETE="OFF" value="<?= $this->nettoyer($typepaiement['libelle']); ?>"></td>
<td width="5%" align="center" class="required">Libellé Eng</td>
<td width="27%" ><INPUT class="form-control majuscule" TYPE="text" id="libelleEng" NAME="libelleEng" value="<?= $this->nettoyer($typepaiement['libelleEng']); ?>" required AUTOCOMPLETE="OFF" ></td>
</tr>
</tbody>
</table>
</form>