index.html 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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. <nav class="navbar">
  20. <div class="navbar-brand">Coucou</div>
  21. </nav>
  22. <h1>Réseau wifi expérimental</h1>
  23. <section role="main" class="container">
  24. <form role="form">
  25. <div class="form-group">
  26. <label for="name">Nom / Pseudo</label>
  27. <input name="name" type="text" class="form-control"/>
  28. </div>
  29. <h2>Moyen de contact</h2>
  30. <p>
  31. <div class="form-group">
  32. <label for="email">Email</label>
  33. <input name="email" type="email" class="form-control">
  34. </div>
  35. <div class="form-group">
  36. <label for="email">Téléphone</label>
  37. <input name="email" type="tel" class="form-control"/>
  38. </div>
  39. </p>
  40. <h2>Je souhaite</h2>
  41. <p class="radio">
  42. <label>
  43. <input type="radio" name="contrib-type" value="share" class="form-control"/> Partager une partie de ma connexion
  44. </label>
  45. </p>
  46. <p class="radio">
  47. <label>
  48. <input type="radio" name="contrib-type" value="connect" class="form-control"/> Me raccorder au réseau expérimental
  49. </label>
  50. </p>
  51. <h2>Partager une connexion</h2>
  52. <h3>Type de connexion</h3>
  53. <p class="radio"><label>
  54. <input type="radio" name="contrib-type" value="share"/>
  55. Fibre <br />
  56. </label></p>
  57. <p class="radio"><label>
  58. <input type="radio" name="contrib-type" value="connect"/>
  59. VDSL <br />
  60. </label></p>
  61. <p class="radio"><label>
  62. <input type="radio" name="contrib-type" value="share"/>
  63. ADSL <br />
  64. </label></p>
  65. <h3>Débits</h3>
  66. <p>
  67. <label for="bandwidth">Débit total (Mbps)</label>
  68. <input name="bandwidth" type="number" class="form-control"/>
  69. </p>
  70. <p>
  71. <label for="share-part">Je souhaite partager (au max.) (Mbps)</label>
  72. <input name="share-part" type="number" class="form-control"/>
  73. </p>
  74. <h2>Ma localisation</h2>
  75. <div id="map">&nbsp;</div>
  76. <h3>Orientation(s) de mes fenêtres</h3>
  77. <label class="checkbox-inline">
  78. <input type="checkbox" name="vehicle" value="N">Nord
  79. </label>
  80. <label class="checkbox-inline">
  81. <input type="checkbox" name="vehicle" value="NO" class="checkbox-inline">Nord-Ouest<br />
  82. </label>
  83. <label class="checkbox-inline">
  84. <input type="checkbox" name="vehicle" value="O" class="checkbox-inline">Ouest<br />
  85. </label>
  86. <label class="checkbox-inline">
  87. <input type="checkbox" name="vehicle" value="SO" class="checkbox-inline">Sud-Ouest<br />
  88. </label>
  89. <label class="checkbox-inline">
  90. <input type="checkbox" name="vehicle" value="S" class="checkbox-inline">Sud<br>
  91. </label>
  92. <label class="checkbox-inline">
  93. <input type="checkbox" name="vehicle" value="SE" class="checkbox-inline">Sud-Est<br>
  94. </label>
  95. <label class="checkbox-inline">
  96. <input type="checkbox" name="vehicle" value="E" class="checkbox-inline">Est<br>
  97. </label>
  98. <label class="checkbox-inline">
  99. <input type="checkbox" name="vehicle" value="NE" class="checkbox-inline">Nord-Est<br>
  100. </label>
  101. <p>
  102. <label for="floor">Étage</label>
  103. <input name="floor" type="number" class="form-control" placeholder="Indiquer « 0 » pour le RDC"/>
  104. </p>
  105. <input type="submit" value="Envoyer">
  106. </form>
  107. </section>
  108. </body>
  109. </html>