-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
60 lines (57 loc) · 2.95 KB
/
Copy pathheader.php
File metadata and controls
60 lines (57 loc) · 2.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="Swaad Sanchalan is a comprehensive restaurant management system offering menu management, reservations, billing, and sales reporting.">
<meta name="keywords"
content="Restaurant Management, Swaad Sanchalan, Menu Management, Reservations, Billing, Sales Reporting">
<meta name="author" content="Manju Madhav V A, Nishant K R">
<title>Swaad Sanchalan - Restaurant Management System</title>
<link rel="icon" href="IMG/favicon.ico" type="image/x-icon">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap"
rel="stylesheet">
<link href="CSS/styles.css" rel="stylesheet">
<style>
@media only screen and (max-width: 767px) {
.navbar-brand img {
max-height: 35px;
}
}
</style>
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar navbar-expand-lg navbar-light">
<a class="navbar-brand" href="#">
<img src="IMG/logo.svg" alt="Swaad Sanchalan Logo">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item <?php echo ($currentPage == 'index.php') ? 'active' : ''; ?>">
<a class="nav-link" href="index.php">Home</a>
</li>
<li class="nav-item <?php echo ($currentPage == 'menu.php') ? 'active' : ''; ?>">
<a class="nav-link" href="menu.php">Menu</a>
</li>
<li class="nav-item <?php echo ($currentPage == 'reservation.php') ? 'active' : ''; ?>">
<a class="nav-link" href="reservation.php">Reservations</a>
</li>
<li class="nav-item <?php echo ($currentPage == 'check_reservation.php') ? 'active' : ''; ?>">
<a class="nav-link" href="check_reservation.php">Check Reservations</a>
</li>
<li class="nav-item <?php echo ($currentPage == 'login.php') ? 'active' : ''; ?>">
<a class="nav-link" href="admin/login.php">Login</a>
</li>
</ul>
</div>
</nav>