-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.html
More file actions
41 lines (36 loc) · 1.5 KB
/
dashboard.html
File metadata and controls
41 lines (36 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HackerAI Dashboard</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-50 font-sans">
<div class="container mx-auto p-6">
<!-- Header Section -->
<header class="bg-indigo-600 text-white p-8 rounded-lg shadow-lg text-center mb-8">
<h1 class="text-4xl font-bold">📊 HackerAI Dashboard</h1>
<p class="mt-2 text-lg">Here is a log of all links that triggered alerts or were clicked.</p>
</header>
<!-- Table Section -->
<div class="overflow-x-auto">
<table class="min-w-full table-auto bg-white shadow-lg rounded-lg overflow-hidden">
<thead class="bg-indigo-500 text-white">
<tr>
<th class="py-3 px-6 text-left text-sm font-semibold">📅 Date</th>
<th class="py-3 px-6 text-left text-sm font-semibold">⏰ Time</th>
<th class="py-3 px-6 text-left text-sm font-semibold">🔗 Link</th>
<th class="py-3 px-6 text-center text-sm font-semibold">✔️ Clicked</th>
<th class="py-3 px-6 text-center text-sm font-semibold">ℹ️ Status</th>
</tr>
</thead>
<tbody id="log-table" class="text-gray-700">
<!-- Logs will be dynamically added here -->
</tbody>
</table>
</div>
</div>
<script src="dashboard.js"></script>
</body>
</html>