Initial
This commit is contained in:
commit
542ca5a14e
7 changed files with 900 additions and 0 deletions
68
html/index.html
Normal file
68
html/index.html
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
<!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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue