-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMainMenu.html
More file actions
42 lines (38 loc) · 1.54 KB
/
Copy pathMainMenu.html
File metadata and controls
42 lines (38 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/css/style.css">
<title>Menu Page</title>
<!-- <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"> -->
</head>
<body class="bg-gray">
<div class="content-wrapper">
<p class="system-name">
<h1 class="logo">*Daily Delight Grocery Store*</h1>
</p>
<div class="centered">
<h3> Menu </h3>
<hr class="menu-line lines">
<!-- <form action="/Login" method="get"> -->
<div class="menu-btns">
<form action="/category" method="get">
<button class="menu-item non-outline shadows">POS</button>
</form>
<form action="/Charts" method="get">
<button class="menu-item non-outline shadows">Sales Report</button>
</form>
<form action="/Staffs" method="get">
<button class="menu-item non-outline shadows">Staff</button>
</form>
<form action="/Inventory" method="get">
<button class="menu-item non-outline shadows">Inventory</button>
</form>
</div>
<!-- </form> -->
</div>
</div>
</body>
</html>