-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 783 Bytes
/
index.html
File metadata and controls
28 lines (28 loc) · 783 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>BlueWatch | Home</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="container">
<div class="sidebar">
<h1>BlueWatch</h1>
<a href="Users/users.html">Users</a>
<a href="Ticket/ticket.html">Tickets</a>
<a href="System/system.html">Systems</a>
<a href="AdvancedPersistentThreat/APT.html"
>Advanced Persistent Threats (APTs)</a
>
<a href="CommonVulnerabilitiesExposures/CVE.html"
>Common Vulnerabilities and Exposures (CVEs)</a
>
<a href="DefensiveTTP/TTP.html">Defensive TTPs</a>
</div>
<div class="content">
<!-- Content goes here -->
<p>Welcome to BlueWatch. Select a category to get started.</p>
</div>
</div>
</body>
</html>