-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin_homepage.html
59 lines (57 loc) · 2.34 KB
/
admin_homepage.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body id="body">
<script src="https://www.gstatic.com/firebasejs/8.0.2/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.0.2/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.0.2/firebase-database.js"></script>
<link rel="stylesheet" href="style.css">
<script src="admin_homepage.js"></script>
<div style="margin-top: 40px;">
<button id="logout" type="button" onclick="log()">Log Out</button>
<nav >
<ul id="nav">
<li><a href="admin_homepage.html" class="active">Dashboard</a></li>
<li><a href="customer.html" >Customer</a></li>
<li><a href="inventoryPage.html" >Inventory</a></li>
<li><a href="service.html">Service Form</a></li>
</ul>
</nav>
<main>
<div>
<h2 align="center">Summary</h2>
<div id="div1">
<h3>Total Sales</h3>
<strong><p id="totalsel">0000 Taka</p></strong>
</div>
<div id="div2">
<h3>Total Investment</h3>
<strong><p id="totalInvest">0000 Taka</p></strong>
</div>
<div id="div3">
<h3>N/A</h3>
<p id="totalSell">N/A</p>
</div>
<div id="div4">
<h3>Total Profit Balance</h3>
<strong><p id="totalProfit">0000 Taka</p></strong>
</div>
</div>
<div id="div5">
<h3>Inventory Summary</h3>
<table id="inventory-table">
<tr>
<th>Item Name</th>
<th>Current Amount</th>
<th>Total Buy</th>
<th>Total Sell</th>
<th>Per Unit Cost</th>
</tr>
</table>
</div>
</main>
</div>
</body>
</html>