-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.html
More file actions
93 lines (78 loc) · 2.51 KB
/
dashboard.html
File metadata and controls
93 lines (78 loc) · 2.51 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Civil Bridge Dashboard</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="dashboard.css">
</head>
<body>
<!-- Navbar -->
<nav>
<h1>Civil Bridge</h1>
<ul>
<li><a href="#stats">Stats</a></li>
<li><a href="#problems">Nearby Problems</a></li>
<li><a href="#report-section">Report Problem</a></li>
<li><a href="#">Logout</a></li>
</ul>
</nav>
<!-- Hero -->
<header class="hero">
<h2>Welcome to Civil Bridge</h2>
<p>Connecting citizens with local authorities to solve civic issues faster.</p>
</header>
<!-- Quick Stats -->
<section id="stats" class="stats-section">
<div class="stat-card">
<h3>120+</h3>
<p>Reports This Month</p>
</div>
<div class="stat-card">
<h3>95%</h3>
<p>Resolved Issues</p>
</div>
<div class="stat-card">
<h3>48 hrs</h3>
<p>Avg. Response Time</p>
</div>
</section>
<section id="problems" class="problems-section">
<h2>Nearby Reported Problems</h2>
<div class="problems-carousel">
<div class="problem-card">
<h4>Pothole in Main Street</h4>
<p>Location: Jankipuram </p>
</div>
<div class="problem-card">
<h4>Broken Streetlight</h4>
<p>Location: hazratganj</p>
</div>
<div class="problem-card">
<h4>Garbage Overflow</h4>
<p>Location: kursi road</p>
</div>
<div class="problem-card">
<h4>Water Leakage</h4>
<p>Location: Alambagh</p>
</div>
</section>
<section id="report-section" class="report-section">
<h2>Report Your Problem</h2>
<form id="reportForm">
<input type="text" placeholder="Your Name" required>
<input type="email" placeholder="Your Email" required>
<input type="text" placeholder="Your Phone" required>
<input type="text" placeholder="Location" required>
<input type="text" placeholder="Problem Title" required>
<textarea placeholder="Describe your problem" required></textarea>
<input type="file" required>
<button type="submit">Submit Report</button>
</form>
</section>
<script src="dashboard.js"></script>
<footer>
© 2025 Civil Bridge | Built for a Better Tomorrow
</body>
</html>