65 lines
2.8 KiB
PHP
65 lines
2.8 KiB
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 colspan="2" ><INPUT class="form-control majuscule" TYPE="text" id="codePointVente" NAME="codePointVente" required AUTOCOMPLETE="OFF" autofocus ></td>
|
|
|
|
<td width="5%" align="center" class="required">Libellé</td>
|
|
<td colspan="3" ><INPUT class="form-control majuscule" TYPE="text" id="libelle" NAME="libelle" required AUTOCOMPLETE="OFF" ></td>
|
|
|
|
<td width="5%" align="center">Type</td>
|
|
<td width="20%">
|
|
<select name="codeTypePointVente" id="codeTypePointVente" class="form-control">
|
|
<?= liste_options($typepointvente,'',false) ?>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="5%" align="center">Email</td>
|
|
<td colspan="2" ><INPUT class="form-control" TYPE="tel" id="email" NAME="email"></td>
|
|
|
|
<td width="5%" align="center">Téléphone</td>
|
|
<td colspan="3" ><INPUT class="form-control" TYPE="telephone" id="telephone" NAME="telephone"></td>
|
|
|
|
<td width="5%" align="center">Fax</td>
|
|
<td width="20%" ><INPUT class="form-control" TYPE="fax" id="fax" NAME="fax"></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="5%" align="center">Adr. Post.</td>
|
|
<td colspan="2" ><INPUT class="form-control" TYPE="text" id="adressePost" NAME="adressePost" value=" "></td>
|
|
|
|
<td width="5%" align="center">Adr. Géo.</td>
|
|
<td colspan="5" ><INPUT class="form-control" TYPE="text" id="adresseGeo" NAME="adresseGeo"></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="5%" align="center">Pays</td>
|
|
<td colspan="2">
|
|
<select name="codePays" id="codePays" class="form-control" onchange="JAVASCRIPT:filtreVilleParPays();">
|
|
<?= liste_options($pays,'',false) ?>
|
|
</select>
|
|
</td>
|
|
|
|
<td width="5%" align="center">Ville</td>
|
|
<td colspan="3">
|
|
<div id="div_ville">
|
|
<select name="codeVille" id="codeVille" class="form-control">
|
|
<?= liste_options($ville,'',false) ?>
|
|
</select>
|
|
</div>
|
|
</td>
|
|
|
|
<td width="5%" align="center">Localite</td>
|
|
<td width="20%">
|
|
<div id="div_localite">
|
|
<select name="codeLocalite" id="codeLocalite" class="form-control">
|
|
<?= liste_options($localite,'',false) ?>
|
|
</select>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|