21 lines
954 B
PHP
21 lines
954 B
PHP
<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">Code</td>
|
|
<td width="10%"><INPUT class="form-control majuscule" TYPE="text" id="codeVille" NAME="codeVille" required AUTOCOMPLETE="OFF" autofocus></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" ></td>
|
|
|
|
<td width="5%" align="center" class="required">Pays</td>
|
|
<td width="20%">
|
|
<select name="codePays" id="codePays" class="form-control" required AUTOCOMPLETE="OFF" >
|
|
<?= liste_options($pays,'',false) ?>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|