68 lines
2 KiB
HTML
68 lines
2 KiB
HTML
|
<!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">
|
||
|
<link rel="stylesheet" href="static/style.css">
|
||
|
<script src="static/script.js"></script>
|
||
|
<title>TFSearch</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div id="site-container">
|
||
|
<div id="header">
|
||
|
<h1>TFSearch</h1>
|
||
|
<p>Intuitiv sökning efter lediga uppkörningstider</p>
|
||
|
</div>
|
||
|
<div id="search-container">
|
||
|
<input type="text" value="SSN" placeholder="Personnummer" size="12"></input>
|
||
|
<select required name="Körkortstyp" required>
|
||
|
<option value="A">Tung</option>
|
||
|
<option value="A2">Lätt</option>
|
||
|
<option value="AM">Heaby</option>
|
||
|
</option>
|
||
|
</select>
|
||
|
<select required name="ort" required>
|
||
|
<option value="Alla orter">Alla Orter</option>
|
||
|
<option value="Halmstad">Halmstad</option>
|
||
|
<option value="Falkenberg">Falkenberg</option>
|
||
|
</option>
|
||
|
</select>
|
||
|
<button type="submit">Search</button>
|
||
|
</div>
|
||
|
<div id="results-container">
|
||
|
<table>
|
||
|
<tr>
|
||
|
<th>Kort</th>
|
||
|
<th>Pris</th>
|
||
|
<th>Datum</th>
|
||
|
<th>Länk</th>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>1</td>
|
||
|
<td>2</td>
|
||
|
<td>3</td>
|
||
|
<td>4</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>1</td>
|
||
|
<td>2</td>
|
||
|
<td>3</td>
|
||
|
<td>4</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>1</td>
|
||
|
<td>2</td>
|
||
|
<td>3</td>
|
||
|
<td>4</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|