29 lines
1.3 KiB
PHP
Executable File
29 lines
1.3 KiB
PHP
Executable File
<form id="formData">
|
|
<legend id="titre_formData"><?= _("Ajouter des données") ?></legend>
|
|
<table class="table table-responsive table-condensed">
|
|
<tbody>
|
|
<tr>
|
|
|
|
|
|
<td width="5%" align="center" class="required"><?= _("Nom") ?></td>
|
|
<td width="30%" ><INPUT class="form-control majuscule" TYPE="text" id="libelle" NAME="libelle" required AUTOCOMPLETE="OFF" ></td>
|
|
|
|
<td width="5%" align="center" class="required"><?= _("Pays") ?></td>
|
|
<td width="20%">
|
|
<select name="codePays" id="codePays" class="form-select" required AUTOCOMPLETE="OFF" onchange="JAVASCRIPT:filtreVilleParPays();">
|
|
<?= liste_options($pays,'',false) ?>
|
|
</select>
|
|
</td>
|
|
|
|
<td width="5%" align="center" class="required"><?= _("Ville") ?></td>
|
|
<td width="20%">
|
|
<div id="div_ville" width="100%">
|
|
<select name="codeVille" id="codeVille" class="form-select" required AUTOCOMPLETE="OFF">
|
|
<?= liste_options($ville,'',false) ?>
|
|
</select>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|