-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashbord.html
240 lines (210 loc) · 6.73 KB
/
dashbord.html
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CampusGuard - Visitor Management System</title>
<link rel="stylesheet" href="dashboard.css">
<style>
/* ... (Your existing CSS) ... */
/* Main Section Styling */
main {
padding: 20px;
display: flex;
flex-direction: column;
gap: 30px;
}
section {
background-color: #f8f8f8;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
h2 {
color: #333;
margin-bottom: 15px;
}
.stats {
display: flex;
justify-content: space-between;
gap: 20px;
}
.stat-box {
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
text-align: center;
}
.stat-box h3 {
margin-bottom: 10px;
}
.stat-box p {
font-size: 24px;
font-weight: bold;
color: #337ab7;
}
/* Form Styling */
#visitor-form {
display: flex;
flex-direction: column;
gap: 15px;
}
#visitor-form input {
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}
#visitor-form button {
padding: 10px 20px;
border: none;
border-radius: 4px;
background-color: #337ab7;
color: #fff;
cursor: pointer;
transition: background-color 0.2s ease;
}
#visitor-form button:hover {
background-color: #23527c;
}
/* Visitor List Styling */
#visitor-list {
display: flex;
flex-direction: column;
gap: 10px;
}
.visitor-item {
background-color: #fff;
padding: 15px;
border-radius: 4px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
display: flex;
justify-content: space-between;
align-items: center;
}
.visitor-item .visitor-info {
display: flex;
flex-direction: column;
gap: 5px;
}
.visitor-item .visitor-actions {
display: flex;
gap: 10px;
}
.visitor-item button {
padding: 8px 15px;
border: none;
border-radius: 4px;
background-color: #4CAF50;
color: #fff;
cursor: pointer;
transition: background-color 0.2s ease;
}
.visitor-item button:hover {
background-color: #3e8e41;
}
/* Access Control Styling */
#access-control button {
padding: 10px 20px;
border: none;
border-radius: 4px;
background-color: #f44336;
color: #fff;
cursor: pointer;
transition: background-color 0.2s ease;
margin-right: 10px;
}
#access-control button:hover {
background-color: #d32f2f;
}
/* Reports Styling */
#generate-report {
padding: 10px 20px;
border: none;
border-radius: 4px;
background-color: #2196F3;
color: #fff;
cursor: pointer;
transition: background-color 0.2s ease;
}
#generate-report:hover {
background-color: #1976D2;
}
#report-output {
padding: 15px;
border: 1px solid #ccc;
border-radius: 4px;
background-color: #fff;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<header>
<div class="logo">
<h1>CampusGuard</h1>
<span>Securing Your Campus, One Visitor at a Time.</span>
</div>
<nav>
<ul>
<li><a href="#dashboard" class="active">Dashboard</a></li>
<li><a href="#visitor-management">Visitor Management</a></li>
<li><a href="#access-control">Access Control</a></li>
<li><a href="#reports">Reports</a></li>
</ul>
</nav>
<div class="header-actions">
<button class="btn btn-primary">Login</button>
<button class="btn btn-secondary">Sign Up</button>
</div>
</header>
<main>
<section id="dashboard">
<h2>Dashboard</h2>
<div class="stats">
<div class="stat-box">
<h3>Current Visitors</h3>
<p id="current-visitors">0</p>
</div>
<div class="stat-box">
<h3>Today's Total</h3>
<p id="today-total">0</p>
</div>
</div>
</section>
<section id="visitor-management">
<h2>Visitor Management</h2>
<form id="visitor-form">
<input type="text" id="visitor-name" placeholder="Visitor Name" required>
<input type="email" id="visitor-email" placeholder="Visitor Email" required>
<input type="text" id="visitor-purpose" placeholder="Purpose of Visit" required>
<button type="submit">Check-In Visitor</button>
</form>
<div id="visitor-list">
<!-- Visitor list will be populated here -->
</div>
</section>
<section id="access-control">
<h2>Access Control</h2>
<!-- Simplified access control interface -->
<button id="lock-all">Lock All Doors</button>
<button id="unlock-all">Unlock All Doors</button>
</section>
<!-- <div class="search-bar"></div>
<form id="search-form">
<input type="text" id="search-input" placeholder="Search...">
<button type="submit">Search</button>
</form>
</div> -->
<section id="reports">
<h2>Reports</h2>
<button id="generate-report">Generate Visitor Report</button>
<div id="report-output"></div>
</section>
</main>
<footer>
<p>© 2023 CampusGuard. All rights reserved.</p>
</footer>
<script src="dashboard.js"></script>
</body>
</html>