-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.html
More file actions
52 lines (46 loc) · 1.57 KB
/
dashboard.html
File metadata and controls
52 lines (46 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alerts & Insights Dashboard</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="dashboard-container">
<div class="page-link">
<a href="index.html">➔ Back to Map View</a>
</div>
<header>
<h1>🚨 Environmental Alerts Dashboard</h1>
<p>Real-time analysis of monitored locations.</p>
</header>
<div id="loading-message">
<p>Analyzing all locations... Please wait.</p>
</div>
<main class="dashboard-main">
<section class="alerts-section">
<h2>🔴 Dangerous Condition Alerts</h2>
<div id="dangerous-alerts" class="alerts-grid"></div>
</section>
<section class="alerts-section">
<h2>🟠 Moderate Condition Warnings</h2>
<div id="moderate-warnings" class="alerts-grid"></div>
</section>
<section class="alerts-section">
<h2>✅ Safe Condition Locations</h2>
<div id="safe-areas" class="alerts-grid"></div>
</section>
<section class="insights-section">
<h2>💡 Summary & Insights</h2>
<div id="disaster-prone-areas" class="insight-card">
<h3>Disaster-Prone Areas</h3>
<p>Locations consistently showing moderate or dangerous readings.</p>
<ul id="prone-locations-list"></ul>
</div>
</section>
</main>
</div>
<script src="dashboard.js"></script>
</body>
</html>