-
Notifications
You must be signed in to change notification settings - Fork 1
/
mobile.html
59 lines (57 loc) · 2.57 KB
/
mobile.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Material Design Bootstrap -->
<link href="css/mdb.min.css" rel="stylesheet">
<!-- Your custom styles (optional) -->
<link rel="stylesheet" type="text/css" href="./css/mobile.css">
</head>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<div id="content">
<div id="title-content">
<img id="logo" src="./img/accessBCIT.png" alt="logo">
<div id="input1" class="input-group mb-3 container-fluid">
<input id="locationInput" type="text" class="form-control" placeholder="Your Location" aria-label="Recipient's username" aria-describedby="basic-addon2">
<div class="input-group-append">
<span class="input-group-text yourLocation" id="basic-addon2">
<img id="yourLocation" src="./img/location.png" alt="marker">
</span>
</div>
</div>
<div id="input2" class="input-group mb-3 container-fluid">
<input id="targetInput" type="text" class="form-control" placeholder="Target Location" aria-label="Recipient's username" aria-describedby="basic-addon2">
</div>
<button type="button" class="btn btn-primary" onclick="parseInputs()">Find</button>
</div>
<div id="title"></div>
<div class="map">
<!-- You will not be able to see this text. -->
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<div id="mySidebar" class="sidebar">
<h3>Directions</h3>
<hr style="border: 1px solid white; margin-right: 1em;margin-left: 1em;border-radius: 1em;">
<p id="directions" style="margin: auto;">
</p>
</div>
</div>
<div id="main">
<span style="font-size:30px;cursor:pointer" onclick="openNav()">☰</span>
</div>
<!-- You will not be able to see this text. -->
<div>
<button id="back" type="button" class="btn btn-dark btn-sm" onclick="toHome()">Back</button>
<img id="currMap" src="./img/map_1.png" alt="map">
</div>
</div>
</div>
<script src="./js/mobile.js"></script>
</body>
</html>