-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (81 loc) · 4.39 KB
/
index.html
File metadata and controls
86 lines (81 loc) · 4.39 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html>
<head>
<title>CarGo</title>
<meta http-equiv = "Content-Type" content = "text/html; charset = utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="keywords" content="">
<!-- CSS Section -->
<link rel = "stylesheet" type = "text/css" href = "resources/css/reset.css" />
<link rel = "stylesheet" type = "text/css" href = "resources/css/grid.css" />
<link rel = "stylesheet" type = "text/css" href = "resources/css/style.css" />
<link rel = "stylesheet" type = "text/css" href = "vendors/css/ionicons.min.css" />
<link rel = "stylesheet" type = "text/css" href="vendors/js/datepicker/compressed/themes/default.css" />
<link rel = "stylesheet" type = "text/css" href="vendors/js/datepicker/compressed/themes/default.date.css" />
<link rel = "stylesheet" type = "text/css" href="vendors/js/datepicker/compressed/themes/default.time.css" />
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
</head>
<body>
<header>
<nav>
<a href="#"><i class="ion-android-home"></i></a>
</nav>
</header>
<section class='screen'>
</section>
<!-- JS Section -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<script type="text/javascript" src="https://maps.google.com/maps/api/js?key=AIzaSyDn8-igquxxUaLlrQJw3h_71LMz-y1fNrQ"></script>
<script type="text/javascript" src="vendors/js/gmaps.js"></script>
<script type="text/javascript" src="vendors/js/handlebars.js"></script>
<script type="text/javascript" src="vendors/js/say-cheese-master/say-cheese.js"></script>
<script type="text/javascript" src="vendors/js/webcamjs-master/webcam.js"></script>
<script src="http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/md5.js"></script>
<script src="https://www.parsecdn.com/js/parse-1.6.11.min.js"></script>
<script>
Parse.initialize("R8lCbn3j3q5lsXm6VDdi1WW7jy69F7aVizqVaEE8", "rV8Wj9mTge50pZH2VKKGwAtFtMQSCobcA6WnT9oI");
</script>
<!--
Parse.initialize("WqVzj2bWMfQpQ8cKpBCW7O7d6gaz3qZj8NPPOwb5", "4YxIU03f5axBJ8cJige5ENSFIzXIsJ7Gee5hNmtY");
-->
<script src="https://checkout.stripe.com/checkout.js"></script>
<script type="text/javascript" src="resources/js/script.js"></script>
<script type='text/x-handlebars-template' id='carclub-single-service'>
<li>
<a href="#" class="service-link member">
<input type="hidden" id="objectID" value='{{ objectId }}'>
<i class='ion-android-{{ serviceStatus }}'></i>
<div class="service-link">
<h3>{{ carClubType }}</h3>
<h6>Client: <span>{{ clientID }}</span></h6> <h6>Pickup Time <span id="pickupTime">{{ pickupTime }}</span></h6> <h6>Location <span>{{ pickupAddress }}</span></h6><h6>Estimate duration: <span>{{ estimateDuration }}</span></h6>
</div>
</a>
</li>
</script>
<script type='text/x-handlebars-template' id='car-hire-single'>
<li>
<a href="#" class="service-link">
<input type="hidden" id="objectID" value='{{ objectId }}'>
<i class='ion-android-{{ hireStatus }}'></i>
<div class="service-link">
<h3>{{ carClubType }}</h3>
<h6>Dropoff time: <span id="startTime">{{ startTime }}</span></h6> <h6>Pickup time: <span id="endTime">{{ endTime }}</span></h6> </h6> <h6>Dropoff/Pickup Location: <span>{{ pickupDropoffAddress }}</span></h6>
</div>
</a>
</li>
</script>
<script type='text/x-handlebars-template' id='cab-single-service'>
<li>
<a href="#" class="service-link">
<input type="hidden" id="objectID" value='{{ objectId }}'>
<i class='ion-android-{{ serviceStatus }}'></i>
<div class="service-link">
<h6>Pickup time: <span id="pickupTime" class="pickupTime">{{ pickupTime }}</span></h6> <h6>Pickup at: <span>{{ pickupAddress }}</span></h6> <h6>Estimate ride duration: <span>{{ estimateDuration }}</span></h6>
</div>
</a>
</li>
</script>
</body>
</html>