-
Notifications
You must be signed in to change notification settings - Fork 0
/
shop.html
48 lines (44 loc) · 1.25 KB
/
shop.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shop</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<button onclick="logout()">Logout</button>
<h2>Available Items</h2>
<table id="shopItems">
<thead>
<tr>
<th>Item</th>
<th>Price</th>
<th>Stock</th>
<th>Action</th>
</tr>
</thead>
<tbody></tbody>
</table>
<h3>Shopping Cart</h3>
<table id="cartItems">
<thead>
<tr>
<th>Item</th>
<th>Price</th>
<th>Quantity</th>
<th>Subtotal</th>
<th>Action</th>
</tr>
</thead>
<tbody></tbody>
</table>
<p>Total: $<span id="cartTotal">0.00</span></p>
<button onclick="checkout()">Checkout</button>
<button onclick="generateInvoice()">Generate Invoice</button>
<h3>Daily Sales</h3>
<p>Total Sales Today: $<span id="dailySales">0.00</span></p>
<script src="shop.js"></script>
<script src="auth.js"></script>
</body>
</html>