Some experiments with web applications
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
741 B

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>DVB Abfahrtsmonitor</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
  7. </head>
  8. <body>
  9. <form action="" method="get" id="search-form">
  10. <div id="input" class="section">
  11. <label for="q">Haltestelle</label>
  12. <input type="search" id="q" name="q" required placeholder="Haltestelle eingeben" value="Bischofsweg">
  13. </div>
  14. <div class="button-group">
  15. <button type="submit" id="btn-search">Suche</button>
  16. </div>
  17. </form>
  18. <div id="output"></div>
  19. <script src="scripts/gcf.js"></script>
  20. <script src="scripts/haltestellen.js"></script>
  21. </body>
  22. </html>