31 |
aurelien |
1 |
<!-- ODS_SAISIE - DEBUT SAISIE STATION -->
|
|
|
2 |
<div id="saisie_station">
|
|
|
3 |
<h2 class="etape"> Etape 1 : placez votre station </h2>
|
59 |
aurelien |
4 |
<form class="form_saisie" action="<?= Liens::getUrlValidationFormulaireSaisieStation(); ?>" method="post" id="form_saisie_station">
|
31 |
aurelien |
5 |
|
|
|
6 |
<div class="element_formulaire">
|
|
|
7 |
<span class="element_formulaire element_formulaire_en_ligne">
|
|
|
8 |
<label for="station_nom">Commune / ville :</label>
|
|
|
9 |
<input type="text" name="station_commune" id="station_commune" />
|
|
|
10 |
</span>
|
|
|
11 |
|
|
|
12 |
<span class="element_formulaire element_formulaire_en_ligne">
|
|
|
13 |
<label for="station_milieu">Milieu :</label>
|
87 |
aurelien |
14 |
<select name="station_milieu" id="station_milieu">
|
|
|
15 |
<?php foreach($milieux as $id_milieu => $milieu) : ?>
|
|
|
16 |
<option id="station_milieu_<?= $id_milieu; ?>" value="<?= $id_milieu; ?>" > <?= $milieu ?> </option>
|
|
|
17 |
<?php endforeach ?>
|
|
|
18 |
</select>
|
31 |
aurelien |
19 |
</span>
|
|
|
20 |
</div>
|
|
|
21 |
|
|
|
22 |
<div class="element_formulaire">
|
|
|
23 |
<label for="station_nom">Nom de la station :</label>
|
|
|
24 |
<input type="text" name="station_nom" id="station_nom" /><br />
|
|
|
25 |
</div>
|
|
|
26 |
|
|
|
27 |
<span id="conteneur_lien_cache">
|
|
|
28 |
<a id="cacher_afficher_lien" href="#"> Saisir les coordonnées </a>
|
|
|
29 |
</span>
|
|
|
30 |
|
59 |
aurelien |
31 |
<div id="conteneur_form_liens_lat_lon">
|
31 |
aurelien |
32 |
<label for="station_lat">Latitude :</label>
|
|
|
33 |
<input type="text" name="station_lat" id="station_lat" />
|
|
|
34 |
|
|
|
35 |
<label for="station_lon">Longitude :</label>
|
|
|
36 |
<input type="text" name="station_lon" id="station_lon" />
|
|
|
37 |
|
|
|
38 |
<input type="button" name="localiser_lat_lon" id="localiser_lat_lon" value="localiser" />
|
|
|
39 |
</div>
|
|
|
40 |
|
|
|
41 |
<div class="element_formulaire conteneur_carte">
|
|
|
42 |
<div id="map_canvas" style="width:100%; height:100%"></div>
|
|
|
43 |
</div>
|
|
|
44 |
|
|
|
45 |
<input class="droite gros_bouton_validation" type="submit" value="Suivant" />
|
|
|
46 |
</form>
|
|
|
47 |
</div>
|
|
|
48 |
<!-- ODS_SAISIE - FIN SAISIE STATION -->
|