-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustomer.html
48 lines (43 loc) · 1.87 KB
/
customer.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>
<head>
</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="customer.css">
<script src="customer.js"></script>
<div style="margin-top: 60px;">
<nav >
<ul id="nav">
<li><a href="admin_homepage.html" >Dashboard</a></li>
<li><a href="customer.html" class="active">Customer</a></li>
<li><a href="inventoryPage.html">Inventory</a></li>
<li><a href="service.html">Service Form</a></li>
</ul>
</nav>
<main>
<h3 align = 'center'>Cutomers</h3>
<div id='search'>
<label for="submit">Filter Customer</label>
<input id="myinput" onkeyup="mysfunc()" placeholder="Search by Name.... Ex: Sayanta">
<button id="addbtn" onclick="clik()">Add Customer</button>
</div>
<div id = table>
<table id = "customer_table">
<tr>
<th>Customer Name</th>
<th>ID</th>
<th>Total Due</th>
<th>Total Paid</th>
<th>Email</th>
<th>Phone Number</th>
<th>Address</th>
<th>Registration Date</th>
</tr>
</table>
</div>
</main>
</body>
</html>