-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautocomplete.html
101 lines (87 loc) · 3.65 KB
/
autocomplete.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<title>Traject toevoegen</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css">
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script src="js/plaatsnamen.js"></script>
<script src="js/plaatsnamen_autocomplete.js"></script>
<script src="js/traject-toevoegen.js"></script>
<link href="css/main.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header class="navigation-bar">
<h1>toevoegen</h1>
</header>
<section class="first-step">
<div class="overlay"></div>
<section class="traject-toevoegen">
<div class="plaatsnaam plaatsnaam-van">
<label for="tags">VAN: </label>
<input class="plaatsnaam-input">
<a href="#">OK</a>
</div>
<div class="plaatsnaam plaatsnaam-naar">
<label for="tags">NAAR: </label>
<input class="plaatsnaam-input">
<a href="#">OK</a>
</div>
</section>
<section class="traject-toevoegen-vervoersmiddelen">
<ul>
<li><input type="checkbox" class="image-bus" value="bus" id="CB1" checked/><label for='CB1'></label></li>
<li><input type="checkbox" class="image-trein" value="trein" id="CB2" /><label for='CB2'></label></li>
<li><input type="checkbox" class="image-tram" value="tram" id="CB3" checked/><label for='CB3'></label></li>
<li><input type="checkbox" class="image-metro" value="metro" id="CB4" checked/><label for='CB4'></label></li>
</ul>
</section>
<section class="traject-toevoegen-meldingen">
<span class="title-meldingen">Meldingen<i class="icon-arrow"></i></span>
</section>
<section class="traject-toevoegen-nextstep">
<button class="traject-toevoegen-button" onclick="#">Volgende stap</button>
</section>
</section>
<section class="second-step">
<section class="traject-toevoegen">
<section class="traject-toevoegen-title">
<label for="tags">NAAM: </label>
<input class="naam-input">
<span class="input-description">Naam voor het traject. Bijv: Kantoor of Thuis<span>
</section>
<section class="traject-toevoegen-customimage">
<section class="block1">
<span>FOTO KIEZEN</span>
<section class="custom-images">
<ul>
<li class="selected"><img src="" alt="" class="thumbs"></li>
<li><img src="" alt="" class="thumbs"></li>
<li><img src="" alt="" class="thumbs"></li>
<li><img src="" alt="" class="thumbs"></li>
<li><img src="" alt="" class="thumbs"></li>
<li><img src="" alt="" class="thumbs"></li>
<li><img src="" alt="" class="thumbs"></li>
<li><img src="" alt="" class="thumbs"></li>
</ul>
<input type="hidden" class="selected-image" value="0"/>
</section>
</section>
<section class="block2">
<span>OF KIES UIT FILMROL<i class="icon-arrow"></i></span>
</section>
</section>
</section>
<section class="traject-toevoegen-back">
<button class="traject-toevoegen-button">VORIGE</button>
</section>
<section class="traject-toevoegen-finish">
<button class="traject-toevoegen-button">VOEG TRAJECT TOE</button>
</section>
</section>
</body>
</html>