-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEmployeeDailyVisitor.html
More file actions
48 lines (48 loc) · 2.59 KB
/
EmployeeDailyVisitor.html
File metadata and controls
48 lines (48 loc) · 2.59 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
<!DOCTYPE html>
<html>
</head>
<title>DailyVisitors</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">
<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>
</head>
<body>
<div class="container">
<h1 class="text-primary text-uppercase text-center">Employee Daily Visitors</h1>
<h2 class="text-danger">AllRecords</h2>
</div>
<table class="table table-bordered table-hover" id="dataTable">
<thead class="thead-dark">
<tr>
<th scope="col">S.No</th>
<th scope="col">First_Name</th>
<th scope="col">Last_Name</th>
<th scope="col">Email</th>
<th scope="col">Phone_No</th>
<th scope="col">Paytm_No</th>
<th scope="col">Tez_No</th>
<th scope="col">Address</th>
<th scope="col">Aadhar_No</th>
<th scope="col">Bank_Name</th>
<th scope="col">Account_No</th>
<th scope="col">IFSC_Code</th>
<th scope="col">Title</th>
<th scope="col">Title_Filed1</th>
<th scope="col">Title_Filed2</th>
<th scope="col">Current_Address</th>
</tr>
</thead>
</table>
<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>
<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.13.2/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.9.3/firebase-database.js"></script>
<script src="js/dailyvisitor.js"></script>
</body>
</html>