26 lines
1.1 KiB
PHP
Executable File
26 lines
1.1 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"><?= _("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-select">
|
|
<?= 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>
|