Initial
This commit is contained in:
parent
542ca5a14e
commit
aff781e04a
8 changed files with 548 additions and 37 deletions
|
|
@ -5,59 +5,39 @@
|
|||
<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="shortcut icon" href="data:image/x-icon;," type="image/x-icon">
|
||||
<link rel="stylesheet" href="static/style.css">
|
||||
<script src="static/script.js"></script>
|
||||
<script src="static/script.js" defer></script>
|
||||
<title>TFSearch</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<script>// To fix issue with forcing page before css is loaded...</script>
|
||||
<div id="site-container">
|
||||
<div id="header">
|
||||
<h1>TFSearch</h1>
|
||||
<p>Intuitiv sökning efter lediga uppkörningstider</p>
|
||||
<p><b>Intuitiv sökning efter lediga uppkörningstider</b></p>
|
||||
<p>Ingen personlig data samlas, analyseras eller delas.</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>
|
||||
<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>
|
||||
</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 id="location-selector" required name="ort" onchange="locationChanged(this)" disabled>
|
||||
<option value="all">Hela Sverige</option>
|
||||
</select>
|
||||
<button type="submit">Search</button>
|
||||
<button id="searchButton" type="submit" onclick="executeSearch()" disabled>Search</button>
|
||||
</div>
|
||||
<div id="results-container">
|
||||
<table>
|
||||
<table id="results-table">
|
||||
<tr>
|
||||
<th>Kort</th>
|
||||
<th>Pris</th>
|
||||
<th>Datum</th>
|
||||
<th>Tid</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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue