index.html 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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>Coucou</h1>
  23. <form>
  24. <p>
  25. <label for="name">Nom / Pseudo</label>
  26. <input name="name" type="text"/>
  27. </p>
  28. <h2>Moyen de contact</h2>
  29. <p>
  30. <label for="email">Email</label>
  31. <input name="email" type="email"/>
  32. et/ou
  33. <label for="email">Téléphone</label>
  34. <input name="email" type="tel"/>
  35. </p>
  36. <h2>Je souhaite</h2>
  37. <p>
  38. <input type="radio" name="contrib-type" value="share"/>
  39. Partager une partie de ma connexion <br />
  40. <input type="radio" name="contrib-type" value="connect"/>
  41. Me raccorder au réseau expérimental
  42. </p>
  43. <h2>Partager une connexion</h2>
  44. <h3>Ma connexion</h3>
  45. <p>
  46. <input type="radio" name="contrib-type" value="share"/>
  47. Fibre <br />
  48. <input type="radio" name="contrib-type" value="connect"/>
  49. VDSL <br />
  50. <input type="radio" name="contrib-type" value="share"/>
  51. ADSL <br />
  52. </p>
  53. <p>
  54. <label for="bandwidth">Débit (Mbps)</label>
  55. <input name="bandwidth" type="number"/>
  56. </p>
  57. <p>
  58. <label for="share-part">Je souhaite partager (au max.) (Mbps)</label>
  59. <input name="share-part" type="number"/>
  60. </p>
  61. <h2>Ma localisation</h2>
  62. <div id="map">&nbsp;</div>
  63. <h3>Orientation(s) de mes fenêtres</h3>
  64. <input type="checkbox" name="vehicle" value="N">Nord<br />
  65. <input type="checkbox" name="vehicle" value="NO">Nord-Ouest<br />
  66. <input type="checkbox" name="vehicle" value="O">Ouest<br />
  67. <input type="checkbox" name="vehicle" value="SO">Sud-Ouest<br />
  68. <input type="checkbox" name="vehicle" value="S">Sud<br>
  69. <input type="checkbox" name="vehicle" value="SE">Sud-Est<br>
  70. <input type="checkbox" name="vehicle" value="E">Est<br>
  71. <input type="checkbox" name="vehicle" value="NE">Nord-Est<br>
  72. <p>
  73. <label for="floor">Étage</label>
  74. <input name="floor" type="number"/>
  75. </p>
  76. <input type="submit" value="Envoyer">
  77. </form>
  78. </body>
  79. </html>