production/Vue/Ajaxtbajouterlienparente/index.php
2025-12-01 16:12:12 +00:00

19 lines
1001 B
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="10%" align="center" class="required"><?= _("Libellé Fr") ?></td>
<td width="28%" ><INPUT class="form-control" TYPE="text" id="libelle" NAME="libelle" style="text-transform:capitalize;" required AUTOCOMPLETE="OFF" ></td>
<td width="10%" align="center" class="required"><?= _("Libellé Eng") ?></td>
<td width="27%"><INPUT class="form-control firstLetter" TYPE="text" id="libelleEng" NAME="libelleEng" style="text-transform:capitalize;" required AUTOCOMPLETE="OFF"></td>
<td width="5%" align="center"><?= _("Ordre") ?></td>
<td width="10%"><INPUT class="form-control text-center" TYPE="number" min="0" value = "0" onBlur="controle_numerique(this);" id="ordre" NAME="ordre"></td>
</tr>
</tbody>
</table>
</form>