forked from joc167/COGS120Restaurant
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathp3.html
More file actions
82 lines (71 loc) · 2.79 KB
/
Copy pathp3.html
File metadata and controls
82 lines (71 loc) · 2.79 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
<html>
<head>
<title> all time </title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/theme.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Libraries CSS Files -->
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="lib/ionicons/css/ionicons.min.css" rel="stylesheet">
<link href="lib/magnific-popup/magnific-popup.css" rel="stylesheet">
<style>
@import url('https://fonts.googleapis.com/css?family=Montserrat');
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
</style>
</head>
<body>
<button class="homebtn" onclick="javascript:window.location.href='home.html';"><i class="fa fa-home"></i></button>
<header id="header">
<div id="logo" class="pull-left">
<h1><a href="home.html" class="scrollto">WaitLess</a></h1>
</div>
</header><!-- #header -->
<section id="intro">
<div class="intro-text" >
<h2 align="center">Estimated Wait Times <br> For <span id="rstrName"></span></h2>
</div>
</section>
<script>
document.getElementById("rstrName").innerHTML = localStorage.getItem('rstrName');
</script>
<div class="container">
<!-- remember to put Handlebars templates within script tags so that the
webpage doesn't attempt to load them as HTML -->
<script id="entry-template" type="text/x-handlebars-template">
<tr>
<td>
<span id='time' style="letter-spacing: 1px;">
  @ {{time}}  :</span>
<span id='wt' style="letter-spacing: 1px;">{{waitTime}} min(s)  </span>
</td>
</tr>
</script>
<div class="list alltime" >
<table id="templatedProjects" style="text-align:center;">
<!-- we will inject templated project HTML code into here -->
</table>
</div>
</div>
<button class="backbtn" onclick="goBack()">Go back</button>
<script>
function goBack() {
window.history.back();
}
</script>
<script src="https://code.jquery.com/jquery.js"></script>
<script src="js/handlebars-v4.0.12.js"></script>
<script src="js/alltime.js"></script>
<!-- JavaScript Libraries -->
<script src="lib/jquery/jquery.min.js"></script>
<script src="lib/jquery/jquery-migrate.min.js"></script>
<script src="lib/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/wow/wow.min.js"></script>
<script src="lib/superfish/hoverIntent.js"></script>
<script src="lib/superfish/superfish.min.js"></script>
<script src="lib/magnific-popup/magnific-popup.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>