forked from jennyrudemo/lego-database
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart.php
More file actions
70 lines (57 loc) · 2.02 KB
/
Copy pathstart.php
File metadata and controls
70 lines (57 loc) · 2.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
?php include "txt/header.txt";?>
<!-- Avslutande av header-div -->
<div id="description">
<h3 id="descriptionText" class="headerText">
Sök bland legosatser och se vilka som finns i samlingen!</h3>
</div>
</div>
<div id="background">
<img id="legobit-test" src="legobit-test.svg" alt="legobit-test">
<div id="searchBar">
<form id="myForm" action ="searchresult.php" method="GET">
<!-- Hela "sökfönstret" -->
<div id="searchRow1">
<input id="searchField" type="text" name="search" placeholder="Sök på en sats här..." required/>
<!-- Söktext in i denna -->
<!-- <div id="searchButton"> -->
<input id="searchButton" type="submit" />
</div>
<div id="catergorySearch">
<!--kommer behöva hämta alla kategorier från databasen-->
<!--<label for="category">Välj kategori</label>-->
<select name="category">
<option value="" disabled selected>Välj kategori...</option>
<option value="starwars">Star Wars</option>
<option value="castle">Castle</option>
<option value="basic">Basic</option>
<option value="duplo">Duplo</option>
</select>
</div>
<div id="yearSearch">
<!--<label for="year">Välj år</label>-->
<!--php för att hämta alla år-->
<select name="year">
<option value="" disabled selected>Välj år...</option>
<option value="1999">1999</option>
<option value="2000">2000</option>
<option value="2001">2001</option>
<option value="2002">2002</option>
</select>
</div>
<div id="sortBy">
<!--<label for="sortBy">Sortera efter...</label>-->
<select name="sortBy">
<option value="" disabled selected>Sortera efter...</option>
<option value="sets">Sats</option>
<option value="parts">Bitar</option>
</select>
<?php
include "radio.txt";
?>
</div>
</form>
</div>
</div>
<?php include "txt/footer.txt";?>
</body>
</html>