-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsavedHistory.html
90 lines (65 loc) · 2.68 KB
/
savedHistory.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>House Hunt</title>
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection" />
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/style.css" />
<link rel="shortcut icon" type="image/png" href="./css/img/favicon.png" />
</head>
<body id="savedPage">
<nav>
<div class="nav-wrapper">
<a href="#" class="brand-logo">Dream Home</a>
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li><a href="index.html">Home</a></li>
<li><a href="savedHistory.html">Saved
Property</a></li>
</ul>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col s3">
<div class="work-address">
<input type="text" id="work-input" class="col-8" placeholder="Enter workplace address">
<a class="waves-effect waves-light btn-small" id="saveWorkAddress">save</a>
</div>
</div>
<table>
<thead>
<tr>
<th>Address</th>
<th>Travel Distance</th>
<th>Travel Time</th>
</tr>
</thead>
<tbody id="table-body">
</tbody>
</table>
</div>
</div>
<div class="travelInfo"></div>
<!--footer-->
<footer class="footer">
<div>
<!-- ust fix position to fix it at the bottom-->
<p> © Copyright </p>
</div>
</footer>
<script sync defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDkoaZdFxBFFsVXF2Hey8DXZ-tIiR_NBYM&callback=initMap"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!--JavaScript at end of body for optimized loading-->
<script type="text/javascript" src="./js/materialize.min.js"></script>
<!-- <script type="text/javascript"
src="js/materialize.js"></script> -->
<script src="./js/savedHistory.js"></script>
<script src="js/scriptMateriallize.js"></script>
</body>
</html>