-
Notifications
You must be signed in to change notification settings - Fork 0
/
MaskUsers.html
executable file
·49 lines (38 loc) · 1.24 KB
/
MaskUsers.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/MaskTable.css">
<script src="js/header.js"></script>
<script src="js/MaskTable.js"></script>
<title>User Mask Inventory</title>
</head>
<body>
<!-- add the common header -->
<div id="pageName" style="display: none;">User Mask Inventory</div>
<div id="headerContainer"></div>
<!-- Search bar / page number -->
<div id="searchBar" style="display: flex; justify-content: space-between; align-items: center;">
<div id="searchInputContainer">
<input type="text" id="searchInput" placeholder="Search Table..." />
<button id="submitTableSearch" onclick="searchTable()">Search Table</button>
</div>
<div id="pageSizeContainer">
<label for="pageSizeInput">Page Size (rows):</label>
<input type="number" id="pageSizeInput" value="10" min="1" onchange="updatePageSize()" />
</div>
</div>
<table id="BasicMaskTable">
<thead class="tabHead">
<tr id="headerRow"></tr>
</thead>
<tbody id="GeneratedMaskTable"></tbody>
</table>
<div id="paginationContainer"></div>
<script>
apiUrl = '/mask-system-users';
addOptions = false;
</script>
</body>
</html>