-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathtrackorder.html
145 lines (133 loc) · 5.33 KB
/
trackorder.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Order Tracking</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
<link rel="stylesheet" href="about.css">
<link rel="stylesheet" href="mynav.css">
<script src="jquery-3.6.4.min.js"></script>
<script src="mynav.js"></script>
<!-- Favicon -->
<link rel="shortcut icon" href="images/cafe_fav.png" type="image/x-icon">
<style>
body {
background-color: #aa6427;
/* Coffee Brown */
color: #ffeebb;
/* Creamy Yellow */
}
.card,
.table {
background-color: #ab684b;
/* Dark Coffee Brown */
border: 2px solid #ffeebb;
/* Creamy Yellow */
}
.card-header {
background-color: #af5a36;
/* Darker Coffee Brown */
border: 1px solid #ffeebb;
/* Creamy Yellow */
}
.card-title {
margin-bottom: 1rem;
display: inline;
}
.table tbody tr:hover {
background-color: #e4c6a3;
}
.card-text {
font-size: large;
display: block;
}
.card-body:hover {
background-color: #e4c6a3;
}
</style>
</head>
<body>
<nav class="navbar navbar-light navbar-expand-md navbar-fixed-top navigation-clean-button">
<div class="container">
<button class="navbar-toggler" data-bs-toggle="collapse" data-bs-target="#mynav"><span
class="visually-hidden">.</span><span class="navbar-toggler-icon"></span></button>
<div>
<a href="index.html" class="navbar-brand
"><span><strong>The Cafe</strong></span></a>
</div>
<div class="collapse navbar-collapse" id="mynav">
<ul class="navbar-nav navbar-right">
<li class="nav-item">
<a href="index.html" class="nav-link active" style="color:rgba(255, 255, 255);">Home</a>
</li>
<li class="nav-item dropdown">
<a class="dropdown-toggle nav-link" data-bs-toggle="dropdown" href="#"
style="color:rgba(255, 255, 255);">Services</a>
<div class="dropdown-menu">
<a href="menu.html" class="dropdown-item bg-dark" data-bss-hover-animate="pulse"
style="color:rgba(255, 255, 255);">Menu</a>
<a href="order.html" class="dropdown-item bg-dark d-fle" data-bss-hover-animate="pulse"
style="color:rgba(255, 255, 255);">Your Order</a>
<a href="trackorder.html" class="dropdown-item bg-dark d-fle" data-bss-hover-animate="pulse"
style="color:rgba(255, 255, 255);">Track your order</a>
</div>
</li>
<li class="nav-item">
<a href="about.html" class="nav-link active" style="color:rgba(255, 255, 255);">About Us</a>
</li>
<li class="nav-item">
<a href="contact.html" class="nav-link active" style="color:rgba(255, 255, 255);">Contact Us</a>
</li>
<li class="nav-item">
<a href="faq.html" class="nav-link active" style="color:rgba(255, 255, 255);">FAQ</a>
</li>
<li class="nav-item">
<a href="signup.html" class="nav-link active" style="color:rgba(255, 255, 255);">Sign Up</a>
</li>
<li class="nav-item">
<a href="login.html" class="nav-link active" style="color:rgba(255, 255, 255);">Login</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container mt-5">
<h1>Order Tracking</h1>
<div class="card">
<div class="card-header">
Current Order Status
</div>
<div class="card-body">
<h5 class="card-title">Order #123456</h5>
<p class="card-text">Status: Shipped</p>
</div>
</div>
<div class="mt-4">
<h3>Past Orders</h3>
<table class="table table-striped">
<thead>
<tr>
<th>Order #</th>
<th>Status</th>
<th>Order Date</th>
</tr>
</thead>
<tbody>
<tr>
<td>123455</td>
<td>Delivered</td>
<td>2023-10-10</td>
</tr>
<tr>
<td>123454</td>
<td>Cancelled</td>
<td>2023-09-28</td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>