-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (54 loc) · 2.12 KB
/
Copy pathindex.html
File metadata and controls
57 lines (54 loc) · 2.12 KB
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
<!DOCTYPE html>
<html lang="en" class="">
<head>
<meta charset="utf-8" />
<title>LogWarp - Under Maintenance</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
content="Develop a log analysis system for Windows that focuses on security event logs. The system should parse and analyze logs generated by Windows Security, Application, and System event logs to identify and alert on potential security incidents, such as unauthorized access attempts, malware activity, or policy violations."
name="description"
/>
<meta content="MyraStudio" name="author" />
<link rel="shortcut icon" href="assets/images/favicon.ico" />
<!-- stylesheet -->
<link href="assets/css/tailwind.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="bg-gray-100">
<div class="min-h-screen flex flex-col justify-center items-center">
<img
src="https://www.svgrepo.com/show/426192/cogs-settings.svg"
alt="Logo"
class="mb-8 h-40"
/>
<h1
class="text-4xl md:text-5xl lg:text-6xl font-bold text-center text-gray-700 mb-4"
>
LogWarp is Under Maintenance
</h1>
<p
class="text-center text-gray-500 text-lg md:text-xl lg:text-2xl mb-8"
>
Develop a log analysis system for Windows that focuses on security
event logs. The system should parse and analyze logs generated by
Windows Security, Application, and System event logs to identify and
alert on potential security incidents, such as unauthorized access
attempts, malware activity, or policy violations.
</p>
<div class="flex space-x-4">
<a
href="#"
class="bg-gray-800 hover:bg-gray-700 text-white font-bold py-3 px-6 rounded"
>We Miss You</a
>
<a
href="#"
class="border-2 border-gray-800 text-black font-bold py-3 px-6 rounded"
>❤️</a
>
</div>
</div>
</div>
<script src="assets/js/theme.js"></script>
</body>
</html>