22 lines
1.1 KiB
PHP
Executable File
22 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="<?=$ville['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="codeVille" NAME="codeVille" value="<?= $this->nettoyer($ville['codeVille']); ?>" disabled></td>
|
|
|
|
<td width="5%" align="center" class="required"><?= _("Libellé") ?></td>
|
|
<td width="30%" ><INPUT class="form-control majuscule" TYPE="text" id="libelle" NAME="libelle" required AUTOCOMPLETE="OFF" value="<?= $this->nettoyer($ville['libelle']); ?>" autofocus></td>
|
|
|
|
<td width="5%" align="center" class="required">Type</td>
|
|
<td width="20%">
|
|
<select name="codePays" id="codePays" class="form-select" required AUTOCOMPLETE="OFF">
|
|
<?= liste_options($pays,$this->nettoyer($ville['codePays']),true) ?>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|