-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (87 loc) · 4.02 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
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
102
103
104
105
106
107
108
109
110
<!doctype html>
<html lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Travel Guide</title>
<!-- Disable tap highlight on IE -->
<meta name="msapplication-tap-highlight" content="no">
<!-- Web Application Manifest -->
<link rel="manifest" href="manifest.json">
<!-- Add to homescreen for Chrome on Android -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="Web Starter Kit">
<link rel="icon" sizes="192x192" href="images/touch/chrome-touch-icon-192x192.png">
<!-- Add to homescreen for Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="Web Starter Kit">
<link rel="apple-touch-icon" href="images/touch/apple-touch-icon.png">
<!-- Tile icon for Win8 (144x144 + tile color) -->
<meta name="msapplication-TileImage" content="images/touch/ms-touch-icon-144x144-precomposed.png">
<meta name="msapplication-TileColor" content="#2F3BA2">
<!-- Color the status bar on mobile devices -->
<meta name="theme-color" content="#2F3BA2">
<!-- SEO: If your mobile URL is different from the desktop URL, add a canonical link to the desktop page https://developers.google.com/webmasters/smartphone-sites/feature-phones -->
<!--
<link rel="canonical" href="http://www.example.com/">
-->
<!-- Your styles -->
<link rel="stylesheet" href="styles/main.css">
<link rel="stylesheet" type="text/css" href="styles/notie.css">
</head>
<body>
<div id="wrapper">
<!-- Add your site or app content here -->
<div id="header">
<h1 class="title">Travel Guide</h1>
</div>
<div id="content" class="container">
<form id="form" class="form">
<div class="row">
<h2>Your Journey</h2>
<div id="fromFormGroup" class="col-md-4 form-group">
<span id="fromHelpBlock" class="help-block" data-defaultText="Where are you travelling from?">Travelling from</span>
<input id="travellingFrom" class="form-control input-field" type="text" name="from" placeholder="" aria-describedby="fromHelpBlock" data-travellingFrom autofocus>
<ul id="from-suggestions" class="suggestions"></ul>
</div>
<div id="toFormGroup" class="col-md-4 form-group">
<span id="toHelpBlock" class="help-block" data-defaultText="Travelling to">Travelling to</span>
<input id="travellingTo" class="form-control input-field" type="text" name="to" placeholder="" aria-describedby="toHelpBlock">
<ul id="to-suggestions" class="suggestions"></ul>
</div>
<!--div id="date-div">
<label for="date">Date</label><input id="date" type="date"/>
</div>
<div id="time-div">
<label for="time">Time</label><input id="time" type="time"/>
</div-->
<div class="col-md-2">
<button class="btn btn-primary form-control">Go</button>
</div>
</div>
</form>
<div id="recentJourneys">
<h2>Recent Journeys</h2>
<ul id="recentJourneys_ul"></ul>
</div>
<div id="journeys">
</div>
</div>
<!-- End Content -->
<div id="footer">
</div>
<!-- End Footer -->
</div>
<!-- build:js scripts/main.min.js -->
<script src="scripts/db.js"></script>
<script src="scripts/app.js"></script>
<script src="scripts/jquery-3.0.0.min.js"></script>
<script src="scripts/main.js"></script>
<script type="text/javascript" src="scripts/notie.min.js"></script>
<!-- endbuild -->
<!-- Built with love using Web Starter Kit -->
</body>
</html>