-
Notifications
You must be signed in to change notification settings - Fork 1
/
suspicious.html
52 lines (51 loc) · 1.6 KB
/
suspicious.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
<!DOCTYPE html>
<html lang="en">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<head>
<script src="index.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Suspicious</title>
<style type="text/css">
body
{
font-family: Arial;
font-size: 10pt;
}
table
{
border: 1px solid #ccc;
border-collapse: collapse;
}
table th
{
background-color: #F7F7F7;
color: #333;
font-weight: bold;
}
table th, table td
{
padding: 5px;
border-color: #ccc;
}
</style>
</head>
<body onload="GenerateTable(page=0, resp_type='suspicious')"">
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="register.html">Register New User</a>
<a href="index.html">Masked Entries</a>
<a href="suspicious.html">Suspicious Entries</a>
<a href="penalty.html">All Penalties</a>
</div>
<span style="font-size:30px;cursor:pointer" onclick="openNav()">☰</span>
<h1>All the Suspicious Activities</h1>
<script src="index.js">
</script>
<hr />
<div id="dvTable">
</div>
<input type="button" value="Next Page" onclick="Next(resp_type='suspicious')"/>
</body>
</html>