-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbills.html
86 lines (80 loc) · 2.69 KB
/
bills.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="vi">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nike</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./css/global-style.css">
<link rel="stylesheet" href="./css/billspage-style.css">
<link rel="stylesheet" href="./css/toast-style.css">
<link rel="stylesheet" href="./css/dropdown-style.css">
</head>
<body>
<header>
<div class="header-content">
<a href="./index.html" class="logo">
<div class="icon">
<img src="./assets/img/icons/nike_icon.svg" alt="Nike_icon">
</div>
<h1>Nike</h1>
</a>
<ul class="navigation">
<li>
<a href="./index.html">Home</a>
</li>
<li>
<a href="#">About</a>
</li>
<li class="active">
<a href="./bills.html">Bills</a>
</li>
<li>
<a href="./cart.html" class="cart">
<i class="fa-solid fa-cart-shopping"></i>
<div class="indicator"></div>
</a>
</li>
</ul>
</div>
</header>
<div class="container">
<table>
<thead>
<tr>
<th>
Code
</th>
<th>
Customer Name
</th>
<th>
Date
</th>
<th>Item Numbers</th>
<th>Total Quantity</th>
<th>Total Price</th>
<th>Return</th>
</tr>
</thead>
<tbody>
<td colspan="7">
<i id="loading-icon" class="fa-solid fa-circle-notch"></i>
</td>
</tbody>
</table>
<div class="action-btns">
<a href="./index.html" class="back-btn">
<i class="fa-solid fa-arrow-left"></i>
<span>Back to Shopping</span>
</a>
</div>
</div>
<!-- Toast -->
<div id="toast"></div>
<script type="module" src="./index.js"></script>
<script type="module" src="./js/pages/bills.js"></script>
</body>
</html>