17 lines
1.1 KiB
PHP
17 lines
1.1 KiB
PHP
<form id="formData">
|
|
<legend id="titre_formData">Modification des données</legend>
|
|
<INPUT class="sr-only" TYPE="text" id = "id" name = "id" value="<?=$service['id']?>">
|
|
<table class="table table-responsive table-condensed">
|
|
<tbody>
|
|
<tr>
|
|
<td width="5%" align="center" class="required">Code</td>
|
|
<td width="10%" ><INPUT class="form-control majuscule" TYPE="text" id="codeService" NAME="codeService" required AUTOCOMPLETE="OFF" autofocus value="<?= $this->nettoyer($service['codeService']); ?>" ></td>
|
|
|
|
<td width="5%" align="center" class="required">Libellé</td>
|
|
<td width="40%" ><INPUT class="form-control majuscule" TYPE="text" id="libelle" NAME="libelle" required AUTOCOMPLETE="OFF" value="<?= $this->nettoyer($service['libelle']); ?>"></td>
|
|
|
|
<td width="5%" align="center">Libellé Eng</td>
|
|
<td width="35%" ><INPUT class="form-control majuscule" TYPE="text" id="libelleEng" NAME="libelleEng" value="<?= $this->nettoyer($service['libelleEng']); ?>"></td>
|
|
</tr>
|
|
</table>
|
|
</form> |