21 lines
1.4 KiB
PHP
Executable File
21 lines
1.4 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="<?=$lienparente['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="codeLienParente" NAME="codeLienParente" required AUTOCOMPLETE="OFF" autofocus value="<?=$lienparente['codeLienParente']?>"></td>
|
|
|
|
<td width="10%" align="center" class="required">Libellé Fr</td>
|
|
<td width="28%" ><INPUT class="form-control" style="text-transform:capitalize;" TYPE="text" id="libelle" NAME="libelle" required AUTOCOMPLETE="OFF" value="<?=$lienparente['libelle']?>"></td>
|
|
|
|
<td width="10%" align="center" class="required">Libellé Eng</td>
|
|
<td width="27%"><INPUT class="form-control" style="text-transform:capitalize;" TYPE="text" id="libelleEng" NAME="libelleEng" required AUTOCOMPLETE="OFF" value="<?=$lienparente['libelleEng']?>"></td>
|
|
|
|
<td width="5%" align="center">Ordre</td>
|
|
<td width="10%"><INPUT class="form-control text-center" TYPE="number" min="0" value="<?=$lienparente['ordre']?>" onBlur="controle_numerique(this);" id="ordre" NAME="ordre"></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form> |