newdesigngestionnaire/Vue/Ajaxtbmodifiertypeaffection/index.php

26 lines
1.5 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="<?=$typeaffection['id']?>">
<table class="table table-responsive table-condensed">
<tbody>
<tr>
<td width="5%" align="center">Code</td>
<td width="10%" ><INPUT class="form-control majuscule" TYPE="text" id="codeTypeAffection" NAME="codeTypeAffection" value="<?= $this->nettoyer($typeaffection['codeTypeAffection']); ?>" disabled></td>
<td width="5%" align="center" class="required"><?= _("Libellé") ?></td>
<td width="25%" ><INPUT class="form-control majuscule" TYPE="text" id="libelle" NAME="libelle" required AUTOCOMPLETE="OFF" value="<?= $this->nettoyer($typeaffection['libelle']); ?>"></td>
<td width="10%" align="center"><?= _("Libellé Eng") ?></td>
<td width="25%" ><INPUT class="form-control majuscule" TYPE="text" id="libelleEng" NAME="libelleEng" value="<?= $this->nettoyer($typeaffection['libelleEng']); ?>"></td>
<td width="10%" align="center"><?= _("Maladie Chronique") ?></td>
<td width="5%">
<select name="maladieChronique" id="maladieChronique" class="form-select">
<?= liste_options($ouinonplafondmodifiable,$this->nettoyer($$typeaffection['maladieChronique']),true) ?>
</select>
</td>
</tr>
</tbody>
</table>
</form>