index.html 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>FAIMaison − contribution à l'expérimentation wifi</title>
  6. <!-- jQuery -->
  7. <script src="jquery/jquery-1.11.0.min.js" type="text/javascript"></script>
  8. <!-- Bootstrap -->
  9. <script src="dist/js/bootstrap.js"></script>
  10. <link href="dist/css/bootstrap.min.css" rel="stylesheet">
  11. <!-- Leaflet -->
  12. <link rel="stylesheet" type="text/css" media="all" href="leaflet/leaflet.css" />
  13. <script src="leaflet/leaflet.js" type="text/javascript"></script>
  14. <!-- Custom -->
  15. <link rel="stylesheet" type="text/css" media="all" href="assets/main.css" />
  16. <script src="assets/main.js" type="text/javascript"></script>
  17. </head>
  18. <body>
  19. <h1>Réseau wifi expérimental</h1>
  20. <section role="main" class="container">
  21. <form role="form">
  22. <div class="form-group">
  23. <label for="name">Nom / Pseudo</label>
  24. <input name="name" type="text" class="form-control"/>
  25. </div>
  26. <h2>Moyen de contact</h2>
  27. <p>
  28. <div class="form-group">
  29. <label for="email">Email</label>
  30. <input name="email" type="email" class="form-control">
  31. </div>
  32. <div class="form-group">
  33. <label for="email">Téléphone</label>
  34. <input name="email" type="tel" class="form-control"/>
  35. </div>
  36. </p>
  37. <h2>Je souhaite</h2>
  38. <p class="radio">
  39. <label>
  40. <input type="radio" name="contrib-type" value="share" /> Partager une partie de ma connexion
  41. </label>
  42. </p>
  43. <p class="radio">
  44. <label>
  45. <input type="radio" name="contrib-type" value="connect" /> Me raccorder au réseau expérimental
  46. </label>
  47. </p>
  48. <h2>Partager une connexion</h2>
  49. <h3>Type de connexion</h3>
  50. <p class="radio"><label>
  51. <input type="radio" name="contrib-type" value="share"/>
  52. Fibre
  53. </label></p>
  54. <p class="radio"><label>
  55. <input type="radio" name="contrib-type" value="connect"/>
  56. VDSL
  57. </label></p>
  58. <p class="radio"><label>
  59. <input type="radio" name="contrib-type" value="share"/>
  60. ADSL
  61. </label></p>
  62. <h3>Débits</h3>
  63. <p>
  64. <label for="bandwidth">Débit total (Mbps)</label>
  65. <input name="bandwidth" type="number" class="form-control"/>
  66. </p>
  67. <p>
  68. <label for="share-part">Je souhaite partager (au max.) (Mbps)</label>
  69. <input name="share-part" type="number" class="form-control"/>
  70. </p>
  71. <h2>Ma localisation</h2>
  72. <div class="row">
  73. <div id="map" class="col-xs-4">&nbsp;</div>
  74. <div class="form-group col-xs-5">
  75. <div class="form-group form-group-lg form-inline">
  76. <input type="text" name="search" id="search" placeholder="rue du calvaire, nantes" class="form-control" />
  77. <span id="search-btn" class="btn btn-default btn-lg">Recherche</span>
  78. <div id="search-results" class=""></div>
  79. </div>
  80. <div class="form-group form-group-sm">
  81. <label for="latitude">Latitude</label>
  82. <input type="text" name="latitude" id="latitude" value="" class="form-control" />
  83. <label for="longitude">Longitude</label>
  84. <input type="text" name="longitude" id="longitude" value="" class="form-control" />
  85. </div>
  86. </div>
  87. </div>
  88. <h3>Orientation(s) de mes fenêtres</h3>
  89. <label class="checkbox-inline">
  90. <input type="checkbox" name="vehicle" value="N">Nord
  91. </label>
  92. <label class="checkbox-inline">
  93. <input type="checkbox" name="vehicle" value="NO" class="checkbox-inline">Nord-Ouest<br />
  94. </label>
  95. <label class="checkbox-inline">
  96. <input type="checkbox" name="vehicle" value="O" class="checkbox-inline">Ouest<br />
  97. </label>
  98. <label class="checkbox-inline">
  99. <input type="checkbox" name="vehicle" value="SO" class="checkbox-inline">Sud-Ouest<br />
  100. </label>
  101. <label class="checkbox-inline">
  102. <input type="checkbox" name="vehicle" value="S" class="checkbox-inline">Sud<br>
  103. </label>
  104. <label class="checkbox-inline">
  105. <input type="checkbox" name="vehicle" value="SE" class="checkbox-inline">Sud-Est<br>
  106. </label>
  107. <label class="checkbox-inline">
  108. <input type="checkbox" name="vehicle" value="E" class="checkbox-inline">Est<br>
  109. </label>
  110. <label class="checkbox-inline">
  111. <input type="checkbox" name="vehicle" value="NE" class="checkbox-inline">Nord-Est<br>
  112. </label>
  113. <p>
  114. <label for="floor">Étage</label>
  115. <input name="floor" type="number" class="form-control" placeholder="Indiquer « 0 » pour le RDC"/>
  116. </p>
  117. <input type="submit" value="Envoyer">
  118. </form>
  119. </section>
  120. </body>
  121. </html>