18 lines
1.2 KiB
PHP
Executable File
18 lines
1.2 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="<?=$motifecxlusionprestation['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" TYPE="text" id="codeMotifExclusion" NAME="codeMotifExclusion" required AUTOCOMPLETE="OFF" autofocus value="<?= $this->nettoyer($motifecxlusionprestation['codeMotifExclusion']); ?>" readonly></td>
|
|
|
|
<td width="5%" align="center" class="required"><?= _("Libellé") ?></td>
|
|
<td width="25%" ><INPUT class="form-control" TYPE="text" id="libelle" NAME="libelle" required AUTOCOMPLETE="OFF" value="<?= $this->nettoyer($motifecxlusionprestation['libelle']); ?>"></td>
|
|
|
|
<td width="5%" align="center"><?= _("Libellé Eng") ?></td>
|
|
<td width="25%" ><INPUT class="form-control" TYPE="text" id="libelleEng" NAME="libelleEng" value="<?= $this->nettoyer($motifecxlusionprestation['libelleEng']); ?>"></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|