-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorders.html
More file actions
81 lines (73 loc) · 2.05 KB
/
orders.html
File metadata and controls
81 lines (73 loc) · 2.05 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
<!DOCTYPE html>
<html lang="en">
<html>
<head>
<title>Chow Poly Pomona</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="../../favicon.ico">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link href="../../dist/css/bootstrap.min.css" rel="stylesheet">
<link href="../../dist/css/bootstrap-theme.min.css" rel="stylesheet">
<link href="theme.css" rel="stylesheet">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
<script src="../../assets/js/ie-emulation-modes-warning.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="../../dist/js/bootstrap.min.js"></script>
<script src="../../assets/js/docs.min.js"></script>
<script src="../../assets/js/ie10-viewport-bug-workaround.js"></script>
<script>
$('body').scrollspy({ target: '#leftCol' })
</script>
<script>
$(function() {
$('#navbar').load("navbar.html");
});
</script>
<style>
h1 {
letter-spacing: -3px;
text-align: center;
}
body {
position: relative;
}
.jumbotron {
display: block;
text-align: center;
}
.center {
text-align: center;
}
h2 {
text-align: center;
}
#orders {
text-align: center;
}
.filler {
text-align: center;
height: 600px;
}
</style>
</head>
<body role="document">
<div id="navbar"></div>
<div class="container theme-showcase" role="main">
<div class="jumbotron">
<h1>Thank you for your order!</h1>
</div>
<div id="orders">
<h2 id="currentOrder">Current Order</h2>
<p class="filler">Hello</p>
<h2 id="pastOrders">Past Orders</h2>
<p class="filler">Hello 2</p>
</div>
</div>
</div>
</body>
</html>