-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccount-info.html
94 lines (77 loc) · 3.04 KB
/
account-info.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
89
90
91
92
93
94
<!DOCTYPE html>
<html>
<head>
<title>Account-info</title>
<link rel="stylesheet" type="text/css" href="style_account.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity=" sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<script type="text/javascript" src="Account-info.js"></script>
</head>
<body>
<div class="wrapper">
<!-- Sidebar --><nav id="sidebar" class="active">
<div class="sidebar-header">
<h3><a href=".\dashboard.html">Frezzmoo</a></h3>
</div>
<ul class="list-unstyled components">
<li class="active">
<a href="#" class="">Profile</a>
</li>
<li>
<a href="#" class="">Users</a>
</li>
<li>
<a href=".\employee.html" class="">Employee</a>
</li>
<li>
<a href=".\shops.html" class="">Shops</a>
</li>
<li>
<a href="#" class="">Products</a>
</li>
<li>
<a href="#" class="">Accounts</a>
</li>
<li>
<a href=".\notes.html" class="">Notes</a>
</li>
<li>
<a href=".\feedbacksAndQueries.html" class="">Feedback</a>
</li>
</ul>
</nav>
<!-- Content navbar -->
<div id="content">
<nav class="main-header navbar navbar-light navbar-expand bg-light">
<div class="">
<button type="button" id="sidebarCollapse" class="btn btn-light">
<i class="fas fa-bars"> <svg class="bi bi-list" width="32" height="32" viewBox="0 0 20 20" fill="black" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M4.5 13.5A.5.5 0 015 13h10a.5.5 0 010 1H5a.5.5 0 01-.5-.5zm0-4A.5.5 0 015 9h10a.5.5 0 010 1H5a.5.5 0 01-.5-.5zm0-4A.5.5 0 015 5h10a.5.5 0 010 1H5a.5.5 0 01-.5-.5z" clip-rule="evenodd"/></svg> </i>
</button>
</div>
<a href="#" class="navbar-brand" style="font-weight: bold;">Dashboard</a>
</nav>
<div class="container">
<!-- --> <h1>Balance Sheet</h1>
<h3>Date: <input type="date" name="date" > </input></h3><br><br>
<button type="button" class="btn btn-secondary" onclick="sortColumn('Total')">Sort</button><br><br>
<table>
<thead>
<tr>
<th>Product_id</th>
<th>Product Name</th>
<th>Price</th>
<th>Retailers</th>
<th>Profit</th>
<th>Loss</th>
<th >Total</th>
</tr>
</thead>
<tbody id="tableData"></tbody>
</table>
</div>
</div>
</div>
</body>
</html>