Projet

Général

Profil

Paste
Télécharger (1,29 ko) Statistiques
| Branche: | Révision:

root / html / form_param.html @ 6bf61e20

1
<div id="addParams">
2
  <label id="paramFormShow">Paramétrer le panorama</label>
3
</div>
4
     <form action="addParams.php?param_panorama=%s" id="form_param" method="post">
5
  <fieldset id="adding"><legend id="paramFormHide">Paramétrage du panorama</legend>
6
    <label title="Au moins 4 caractères">Titre :
7
      <input type="text" pattern="^.{1,40}$" name="param_title" placeholder="%s"
8
             title="ne doit pas contenir pus de 40 caractères" required=""/></label>
9
    <label title="La latitude ϵ [-90°, 90°]. Ex : 46.55257">Latitude :
10
      <input name="param_latitude" type="number" min="-90" max="90" placeholder="43.56" required="" step="any"/></label>
11
    <label title="La longitude ϵ [-180°, 180°]. Ex : 1.45">Longitude :
12
      <input name="param_longitude" type="number" min="-180" max="180" placeholder="1.45" required="" step="any"/></label>
13
    <label title="L'altitude exprmée en mètres et &gt; -400. Ex : 170">Altitude :
14
      <input name="param_altitude" type="number" min="-400" required="" placeholder="170" step="any"/></label>
15
    <label title="L'image fait-elle 360° ?">Rebouclage :
16
      <input type="checkbox" name="param_loop" value="true"></label>
17

    
18
    <div>
19
      <input type="submit" value="Submit"/>
20
      <input type="reset" value="Reset"/>
21
    </div>
22
  </fieldset>
23
</form>