18 lines
1.1 KiB
PHP
Executable File
18 lines
1.1 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="<?=$activite['id']?>">
|
|
<table class="table table-responsive table-condensed">
|
|
<tbody>
|
|
<tr>
|
|
<td width="5%" align="center" >Code</td>
|
|
<td width="5%" ><INPUT class="form-control majuscule" TYPE="text" id="codeActivite" NAME="codeActivite" value="<?= $this->nettoyer($activite['codeActivite']); ?>" disabled></td>
|
|
|
|
<td width="5%" align="center" class="required"><?= _("Libellé") ?></td>
|
|
<td width="28%" ><INPUT class="form-control majuscule" TYPE="text" id="libelle" NAME="libelle" required AUTOCOMPLETE="OFF" autofocus value="<?= $this->nettoyer($activite['libelle']); ?>"></td>
|
|
|
|
<td width="5%" align="center"><?= _("Libellé Eng") ?></td>
|
|
<td width="27%" ><INPUT class="form-control majuscule" TYPE="text" id="libelleEng" NAME="libelleEng" value="<?= $this->nettoyer($activite['libelleEng']); ?>"></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|