-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage2.html
More file actions
37 lines (30 loc) · 1.85 KB
/
page2.html
File metadata and controls
37 lines (30 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cashier 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 class="home" >
<div class="container">
<div class="image-container2">
<img src="img/banner.jpg" alt="Background Image" class="img-fluid">
<h1 id="HeaderPage2">✨ JK Burgers🍔</h1>
<div class="d-flex flex-column flex-md-row justify-content-center">
<input type="button" value="Place Order" class="btn btn-primary fade-in mb-2 mb-md-0" onclick="location.href='OrderUI.html'" id="btnPlaceOrder">
<input type="button" value="Search" class="btn btn-primary fade-in mb-2 mb-md-0" id="btnSearch" onclick="location.href='Search.html'">
<input type="button" value="View" class="btn btn-primary fade-in mb-2 mb-md-0" id="btnView" onclick="location.href='ViewOrders.html'">
<input type="button" value="Update Order Details" class="btn btn-primary fade-in mb-2 mb-md-0" id="btnUpdateOrder" onclick="location.href='UpdateDetails.html'">
<input type="button" value="Back To Home Page" class="btn btn-primary fade-in" onclick="location.href='index.html'" id="FirstPageBtn">
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
</body>
</html>