-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsalestest.html
88 lines (83 loc) · 2.62 KB
/
salestest.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
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SalesPilot Web App</title>
<!-- Bootstrap CSS link -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<!-- Navbar with menu links -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">SalesPilot</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="#">Sales</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Products</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Inventory</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Reports</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Analytics</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Profile</a>
</li>
</ul>
</div>
</nav>
<!-- Menu buttons for Inventory -->
<div class="container mt-3">
<h2>Inventory Data</h2>
<ul class="nav nav-pills">
<li class="nav-item">
<a class="nav-link active" href="#">Daily Sales</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Weekly Sales</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Monthly Sales</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Yearly Sales</a>
</li>
</ul>
</div>
<!-- Table for displaying data -->
<div class="container mt-3">
<table class="table">
<thead>
<tr>
<th>Product Name</th>
<th>Annual Sales Qty</th>
<th>Daily Sales Qty</th>
<th>Inventory Qty</th>
<th>Sales Price</th>
<th>Cost Price</th>
<th>Inventory Cost</th>
<th>Inventory Value</th>
</tr>
</thead>
<tbody>
<!-- Add your data rows here -->
</tbody>
</table>
</div>
<!-- Bootstrap JS and Popper.js scripts (needed for the responsive navbar) -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>