tverkettider/html/index.html

48 lines
1.7 KiB
HTML
Raw Normal View History

2023-04-11 21:05:35 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name"viewport" content="width=device-width, initial-scale=1.0">
2023-04-29 13:59:36 +02:00
<link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon">
2023-04-11 21:05:35 +02:00
<link rel="stylesheet" href="static/style.css">
2023-04-29 13:59:36 +02:00
<script src="static/script.js" defer></script>
2023-04-11 21:05:35 +02:00
<title>TFSearch</title>
</head>
<body>
2023-04-29 13:59:36 +02:00
<script>// To fix issue with forcing page before css is loaded...</script>
2023-04-11 21:05:35 +02:00
<div id="site-container">
<div id="header">
<h1>TFSearch</h1>
2023-04-29 13:59:36 +02:00
<p><b>Intuitiv sökning efter lediga uppkörningstider</b></p>
<p>Ingen personlig data samlas, analyseras eller delas.</p>
2023-04-11 21:05:35 +02:00
</div>
<div id="search-container">
2023-04-29 13:59:36 +02:00
<input id="ssn-input" type="text" pattern="[0-9]" placeholder="Personnummer" maxlength="12" size="12"
onkeyup="ssnChanged(this)" required></input>
<select id="license-selector" required name="Körkortstyp" onchange="licenceChanged(this)" disabled>
2023-04-11 21:05:35 +02:00
</select>
2023-04-29 13:59:36 +02:00
<select id="location-selector" required name="ort" onchange="locationChanged(this)" disabled>
<option value="all">Hela Sverige</option>
2023-04-11 21:05:35 +02:00
</select>
2023-04-29 13:59:36 +02:00
<button id="searchButton" type="submit" onclick="executeSearch()" disabled>Search</button>
2023-04-11 21:05:35 +02:00
</div>
<div id="results-container">
2023-04-29 13:59:36 +02:00
<table id="results-table">
2023-04-11 21:05:35 +02:00
<tr>
<th>Kort</th>
<th>Pris</th>
<th>Datum</th>
2023-04-29 13:59:36 +02:00
<th>Tid</th>
2023-04-11 21:05:35 +02:00
<th>Länk</th>
</tr>
</table>
</div>
</body>
</html>