prenotati.html 797 B

12345678910111213141516171819202122232425
  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 href="/prenota">Prenotati</a>
  11. </nav>
  12. <div 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="#" id="btn-prenotati" >Prenotati</button>
  17. </form>
  18. </div>
  19. <div id="errors"> </div>
  20. <script src="/static/js/common.js"></script>
  21. <script src="/static/js/prenota.js"></script>
  22. </body>
  23. </html>