-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdmin.html
More file actions
25 lines (23 loc) · 1.26 KB
/
Admin.html
File metadata and controls
25 lines (23 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Admin Home Page</title>
<link rel="icon" href="img/logo.(1).PNG" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
</head>
<body >
<div class="image-container2">
<img src="img/bacgroun Quail.jpg" alt="Background Image">
<h1 id="HeaderPage2">✨ JK Burgers🍔</h1>
<input type="button" value="Add Cashier" onclick="location.href='AddCashierForm.html'" id="btnAddCashier">
<input type="button" value="Search Cashier" id="btnCashierSearch" onclick="location.href='SearchCashier.html'" >
<input type="button" value="View Orders" id="btnViewOrders" onclick="location.href='ViewOrders.html'">
<input type="button" value="Find Reports" id="btnFindReport" onclick="location.href='ReportsUI.html'" >
<input type="button" value="Back To Main Page" id="btnBackTo" onclick="location.href='index.html'" >
</div>
</body>
</html>