27 lines
1.3 KiB
PHP
Executable File
27 lines
1.3 KiB
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="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 ></td>
|
|
|
|
<td width="5%" align="center" class="required">Libellé FR</td>
|
|
<td width="24%" ><INPUT class="form-control majuscule" TYPE="text" id="libelle" NAME="libelle" required AUTOCOMPLETE="OFF" ></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" 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,'',false) ?>
|
|
</select>
|
|
</td>
|
|
|
|
<td width="5%" align="center">Ordre</td>
|
|
<td width="8%" ><INPUT class="form-control text-center" TYPE="number" min="0" value="0" id="ordre" NAME="ordre" onBlur="controle_numerique(this);"></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|