prenotati.html 987 B

1234567891011121314151617181920212223242526272829
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <link rel="stylesheet" href="/static/css/common.css" />
  5. <link rel="stylesheet" href="/static/css/style.css" />
  6. </head>
  7. <body>
  8. <nav>
  9. <a href="/">Home</a>
  10. <a class="active" href="/prenota">Prenotati</a>
  11. </nav>
  12. <section id="form-section">
  13. <form id="form" class="hide">
  14. <label for="tuonumero">Imposta una notifica al numero</label>
  15. <input type="number" id="tuonumero" name="tuonumero" min="1" max="5000">
  16. <a href="#" class="btn btn-default" id="btn-prenotati" >Prenotati</a>
  17. </form>
  18. </section>
  19. <section id="now-section" class="hide">
  20. <header><h2>Serviamo il numero</h2>
  21. <div id="now"></div>
  22. </section>
  23. <div id="errors"> </div>
  24. <script src="/static/js/common.js"></script>
  25. <script src="/static/js/prenota.js"></script>
  26. </body>
  27. </html>