-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyOrdersPage.php
58 lines (54 loc) · 1.42 KB
/
myOrdersPage.php
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
<!DOCTYPE html>
<html>
<head>
<title>My Orders</title>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
</head>
<body>
<div class="container-fill">
<div class="text-center bg-inverse" style="padding: 10px">
<div class="row">
<div class="col-2">
<h2 style="color:white">BaristaVille</h1>
</div>
<div class="col-1">
<a href="customerHomePage.php" >
<h6 style="color:white">Home</h1>
</a>
</div>
<div class="col-1">
<a href="menuPage.php">
<h6 style="color:white">Menu</h1>
</a>
</div>
<div class="col-1">
<a href="myOrdersPage.php" >
<h6 style="color:white">My Orders</h1>
</a>
</div>
<div class="col-4"></div>
<div class="col-1">
<a href="myCartPage.php" style="align-right">
<h6 style="color:white">
My Cart
</h1>
</a>
</div>
<div class="col-2">
<h6 style="color:white">
Welcome Customer!
<a href="logoutController.php" style="align-right">Logout</a>
</h1>
</div>
</div>
</div>
</div>
<br>
<div class="container">
<div>
<?php require_once('myOrders.php'); ?>
</div>
</div>
</body>
</html>