-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (59 loc) · 2.79 KB
/
index.html
File metadata and controls
68 lines (59 loc) · 2.79 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
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DailyMart POS System</title>
<link rel="stylesheet" href="asserts/css/style.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous">
</head>
<body>
<header>
<h1>
<a href=""><img width="75px" src="asserts/css/img/licensed-image.jpg" alt="Shopping Cart" class="header-cart-icon"></a>
<a style="text-decoration: none; color: black;" href=""> DailyMart POS</a>
</h1>
<div class="d-flex p-3 bg-light border-bottom">
<input class="form-control me-2" type="search" placeholder="Search for Products" aria-label="Search">
<button class="btn btn-outline-success" type="submit">Search</button>
</div>
</header>
<div class="main-container">
<div class="left-nav">
<a href="#" class="nav-icon active-icon" data-filter="all">ALL</a>
<hr class="nav-divider">
<a href="#" class="nav-icon" data-filter="baby-products">Baby</a>
<a href="#" class="nav-icon" data-filter="milk-item">Dairy</a>
<a href="#" class="nav-icon" data-filter="spices">Spices</a>
<a href="#" class="nav-icon" data-filter="pineapple">Fruit</a>
<a href="#" class="nav-icon" data-filter="meat">Meat</a>
<a href="#" class="nav-icon" data-filter="vegitable">Vegi</a>
<a href="#" class="nav-icon" data-filter="other">Other</a>
<hr class="nav-divider">
<a href="#" class="nav-icon">⚙️</a>
<a href="#" class="nav-icon logout-icon">🔌</a>
</div>
<div class="item-grid-area">
<h2>Item Grocery</h2>
<div id="product-display-grid">
</div>
</div>
<div class="cart-section">
<h2>Current Order</h2>
<div id="cart-items">
<p class="text-muted text-center mt-4">Select items to add to cart</p>
</div>
<div class="total-section">
<p>Sub Total: Rs. <span id="sub-total">0.00</span></p>
<p>Discount: Rs. <span id="discount-amount">0.00</span></p>
<p>Tax: Rs. <span id="tax-amount">0.00</span></p>
<hr>
<h3>TOTAL: Rs. <span id="final-total">0.00</span></h3>
</div>
<button class="btn btn-primary continue-btn w-100">Continue</button>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script>
<script src="app.js"></script>
</body>
</html>