forked from Open-Source-Chandigarh/Cafe-Management
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
12de5dd
commit b03bf9c
Showing
10 changed files
with
159 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
<!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/bootstrap@5.3.0-alpha3/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> | ||
<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> |