-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpage.html
46 lines (46 loc) · 2.17 KB
/
page.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
<!DOCTYPE html>
<html>
<head>
<base target="_top">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>CB_LookUp</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<?!= include("page-css"); ?>
</head>
<body>
<div class="container">
<h4>CB_LookUp</h4>
<h5>Look up Chrome Device Info from CB_Activity</h5>
<h6>Database is updated regularly. Search takes a few seconds to complete.</h6>
<h5>Search by serial number, or email address (complete/partial).</h5>
<div class="row">
<div class="input-field col s4">
<input placeholder="Enter serial here" type="text" id="serial" class="card-panel #f5f5f5 grey lighten-4 validate"><button class="waves-effect waves-light btn-small" id="btnserno">Submit</button></div>
<div class="input-field col s4">
<input placeholder="Enter email address here" type="text" id="username" class="card-panel #f5f5f5 grey lighten-4"><button class="waves-effect waves-light btn-small" id="btnusername">Submit</button></div>
</div>
<br><br>
<h4>Results <button class="waves-effect waves-light btn-small" id="clearResults">Clear Results</button></h4>
<h6>If you click the serial number a new page with more details of that device will open.</h6>
<table>
<thead>
<tr>
<th><h6>Serial</h6></th>
<th><h6>Device OU</h6></th>
<th><h6>Most Recent User</h6></th>
<th><h6>Last Sync</h6></th>
<th><h6>Last User Activity</h6></th>
</tr>
</thead>
<tbody id="idCBS">
</tbody>
</table>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<?!= include("page-js"); ?>
</body>
</html>