-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPaidList.html
More file actions
49 lines (49 loc) · 2.83 KB
/
PaidList.html
File metadata and controls
49 lines (49 loc) · 2.83 KB
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
<!DOCTYPE html>
<html>
</head>
<title>EmployeeManager</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<h1 class="text-success text-uppercase text-center ">Data</h1><br><br>
<h4 class="text-success text-uppercase text-center">All Records</h4><br><br>
<div id="records_contant">
</div>
<table class="table table-bordered table-hover">
<thead class="thead-light text-uppercase text-success">
<tr>
<th scope="col">S.No.</th>
<th scope="col">Employee ID</th>
<th scope="col">Employee name</th>
<th scope="col">Amount</th>
<th scope="col">payment status</th>
</tr>
</thead>
<tbody class="text-uppercase text-success">
<tr>
<th scope="row">1</th>
<td>j78</td>
<td>john</td>
<td>2500</td>
<td>paid</td>
</tr>
</tbody>
</table>
<div class="d-flex-row justify-content-end">
<button type="button" class="btn btn-warning"><a style="color: black;" href="loginForm.html">Logout</a> </button>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
</body>
<script src="https://www.gstatic.com/firebasejs/7.12.0/firebase.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.9.3/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.9.3/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.9.3/firebase-database.js"></script>
<script src="js/firebasescript.js"></script>
<script src="js/test.js"></script>
</html>