-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
72 lines (55 loc) · 1.98 KB
/
index.html
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
71
72
<!DOCTYPE HTML>
<head>
<title>Beautyforms</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<link rel="stylesheet" href="css/style.css"/>
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<script type="text/javascript" src="vendors/jquery/jquery.min.js"></script>
<script type="text/javascript" src="js/script.js"/></script>
</head>
<body>
<div class="formwrapper">
<form method="">
<div class="large-input border-bottom">
<label>where</label>
<input type="text" class="searchfield" placeholder="e.g. Linz, Upper Austria">
</div>
<div class="large-input grid50 border-right float-left border-bottom">
<label>min price</label>
<input type="text" class="searchfield price" placeholder="from">
</div>
<div class="large-input grid50 float-left border-bottom">
<label>max price</label>
<input type="text" class="searchfield price" placeholder="up to">
</div>
<div class="large-input grid50 float-left border-right">
<label>Additional infos</label>
<span class="addinfos">e.g.: glutenfree, vegan, ...</span>
</div>
<div class="large-input grid25 float-left vegan">
<input name="vegan" type="checkbox" value="1" id="vegan">
<label for="vegan">
<img src="img/vegan.svg" alt="Vegan!" />
</label>
</div>
<div class="large-input grid25 float-left border-left junk">
<input name="junk" type="checkbox" value="1" id="junk">
<label for="junk">
<img src="img/junk.svg" alt="No Junkfood!" />
</label>
</div>
<!--
<div class="large-input border-top">
<label>How many persons?</label>
<input type="text" class="searchfield" placeholder="Are you alone or in a party?">
</div>
-->
<div class="large-input border-top">
<div class="button-success grid90">Search</div>
</div>
<div class="clear"></div>
</form>
</div>
</body>
</html>