-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (59 loc) · 2.36 KB
/
index.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ACSC Essential 8</title>
<link rel="stylesheet" href="styles.css">
</head>
<body class="dark-mode"> <!-- Default to dark mode -->
<h1>ACSC Essential 8</h1>
<div class="dark-mode-toggle">
<button id="toggleDarkMode">Toggle Light Mode</button> <!-- Updated to toggle between modes -->
</div>
<div class="filters">
<!-- Mitigation Strategy Checkboxes -->
<div class="filters-row" id="strategyCheckboxes">
<!-- Strategy checkboxes will be dynamically added here -->
</div>
<!-- ML Level Checkboxes -->
<div class="filters-row">
<label><input type="checkbox" id="ml1" /> ML1</label>
<label><input type="checkbox" id="ml2" /> ML2</label>
<label><input type="checkbox" id="ml3" /> ML3</label>
</div>
<!-- Reset Button -->
<div class="filters-row">
<button id="resetFilters">Reset Filters</button>
</div>
</div>
<table id="resultsTable">
<thead>
<tr>
<th class="sortable" onclick="sortTable('MitigationStrategy')">Mitigation Strategy</th>
<th class="sortable" onclick="sortTable('ControlReference')">Control Reference</th>
<th>Control</th>
<th>ML1</th>
<th>ML2</th>
<th>ML3</th>
</tr>
</thead>
<tbody>
<!-- Filtered data will be inserted here -->
</tbody>
</table>
<div class="author-info">
<p>Created by Jack Stuart</p>
<div class="social-links">
<a href="https://www.linkedin.com/in/jackstuart1/" target="_blank" rel="noopener noreferrer">
<img src="https://cdn.jsdelivr.net/npm/simple-icons@v9/icons/linkedin.svg" alt="LinkedIn" class="social-icon">
</a>
<a href="https://github.com/JackStuart" target="_blank" rel="noopener noreferrer">
<img src="https://cdn.jsdelivr.net/npm/simple-icons@v9/icons/github.svg" alt="GitHub" class="social-icon">
</a>
</div>
</div>
<script src="script.js"></script>
<!-- Cloudflare Web Analytics --><script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "d09ef0e4ed554352b297b0e71f7e7de4"}'></script><!-- End Cloudflare Web Analytics -->
</body>
</html>