-
Notifications
You must be signed in to change notification settings - Fork 0
/
service.html
47 lines (43 loc) · 1.85 KB
/
service.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
<!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="service.css">
<script src="service.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">Customer</a></li>
<li><a href="inventoryPage.html">Inventory</a></li>
<li><a href="try.html" class="active">Service Form</a></li>
</ul>
</nav>
<main>
<h3 align = 'center'>Inventory Details</h3>
<div id='search'>
<form action="try.html">
<label for="submit">Filter User</label>
<input id="myinput" onkeyup="mysfunc()" placeholder="Search by Customer-ID.... Ex: 1101">
<button type="submit" id = "addbtn">Service Form</button>
</form>
</div>
<div id="table">
<table id="tableTwo">
<tr>
<th>Token ID</th>
<th>Customer ID</th>
<th>Prod ID</th>
<th>Buy Amount</th>
<th>Pay Bill</th>
<th>Company Profit</th>
<th>Transection Date</th>
</table>
</div>
</main>
</body>
</html>