index.html 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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" class="form-control"/> 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" class="form-control"/> 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 <br />
  53. </label></p>
  54. <p class="radio"><label>
  55. <input type="radio" name="contrib-type" value="connect"/>
  56. VDSL <br />
  57. </label></p>
  58. <p class="radio"><label>
  59. <input type="radio" name="contrib-type" value="share"/>
  60. ADSL <br />
  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 id="map">&nbsp;</div>
  73. <div class="form-group">
  74. <label for="latitude">Latitude</label>
  75. <input type="text" name="latitude" id="latitude" value="" class="form-control" />
  76. </div>
  77. <div class="form-group">
  78. <label for="longitude">Longitude</label>
  79. <input type="text" name="longitude" id="longitude" value="" class="form-control" />
  80. </div>
  81. <div class="form-group form-inline">
  82. <label for="search" class="form-label">Recherche</label>
  83. <input type="text" name="search" id="search" value="rue du calvaire, nantes" class="form-control" />
  84. <span id="search-btn" class="btn btn-default">Recherche</span>
  85. <div id="search-results" class=""></div>
  86. </div>
  87. <h3>Orientation(s) de mes fenêtres</h3>
  88. <label class="checkbox-inline">
  89. <input type="checkbox" name="vehicle" value="N">Nord
  90. </label>
  91. <label class="checkbox-inline">
  92. <input type="checkbox" name="vehicle" value="NO" class="checkbox-inline">Nord-Ouest<br />
  93. </label>
  94. <label class="checkbox-inline">
  95. <input type="checkbox" name="vehicle" value="O" class="checkbox-inline">Ouest<br />
  96. </label>
  97. <label class="checkbox-inline">
  98. <input type="checkbox" name="vehicle" value="SO" class="checkbox-inline">Sud-Ouest<br />
  99. </label>
  100. <label class="checkbox-inline">
  101. <input type="checkbox" name="vehicle" value="S" class="checkbox-inline">Sud<br>
  102. </label>
  103. <label class="checkbox-inline">
  104. <input type="checkbox" name="vehicle" value="SE" class="checkbox-inline">Sud-Est<br>
  105. </label>
  106. <label class="checkbox-inline">
  107. <input type="checkbox" name="vehicle" value="E" class="checkbox-inline">Est<br>
  108. </label>
  109. <label class="checkbox-inline">
  110. <input type="checkbox" name="vehicle" value="NE" class="checkbox-inline">Nord-Est<br>
  111. </label>
  112. <p>
  113. <label for="floor">Étage</label>
  114. <input name="floor" type="number" class="form-control" placeholder="Indiquer « 0 » pour le RDC"/>
  115. </p>
  116. <input type="submit" value="Envoyer">
  117. </form>
  118. </section>
  119. </body>
  120. </html>