start-corsesopp/index.html

45 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<title>START Romagna - Monitor corse non garantite</title>
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="img/favicon.ico">
</head>
<body>
<header>
<center><img src="img/start.png" alt="Start Romagna" width="10%"></center>
<h1>Monitor corse non garantite</h1>
</header>
<main>
<form id="formStazione">
<label for="stazione">Bacino:</label>
<select id="stazione" name="stazione">
<option value="Ravenna">Ravenna</option>
<option value="Rimini">Rimini</option>
<option value="Forli-Cesena">Forlì-Cesena</option>
</select>
<button type="submit">Carica</button>
</form>
<table id="tabellaDati">
<thead>
<tr>
<th>Linea</th>
<th>Inizio</th>
<th>Ora di Inizio</th>
<th>Fine</th>
<th>Ora di Fine</th>
<th>Data</th>
</tr>
</thead>
<tbody id="corpoTabella"></tbody>
</table>
</main>
<footer>
<p>Copyright (C) 2025 EmmeV. Tutti i diritti riservati. - <a href="https://git.vichingo455.freeddns.org/emmev-code/start-corsesopp-api" target="_blank">Codice Sorgente</a><br>
Start Romagna, Start e il logo Start Romagna sono marchi registrati e protetti da copyright da Start Romagna SpA. Vengono usati in questa pagina solo per reference.</p>
</footer>
<script src="js/script.js"></script>
</body>
</html>