-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
289 lines (255 loc) · 8.48 KB
/
about.php
File metadata and controls
289 lines (255 loc) · 8.48 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
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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
<?php
$pageTitle = "About Us";
include('includes/header.php');
include('includes/nav.php');
?>
<style>
.about-container {
max-width: 1200px;
margin: 30px auto;
padding: 0 20px;
}
.about-hero {
text-align: center;
padding: 60px 20px;
background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
color: var(--white);
border-radius: 8px;
margin-bottom: 40px;
box-shadow: 0 4px 10px var(--shadow-light);
}
.about-hero h1 {
font-size: 2.5rem;
margin-bottom: 15px;
}
.tagline {
font-size: 1.2rem;
opacity: 0.9;
}
.about-sections {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-bottom: 40px;
}
.about-sections section {
background: var(--white);
padding: 30px;
border-radius: 8px;
box-shadow: 0 4px 6px var(--shadow-light);
transition: transform 0.3s ease;
}
.about-sections section:hover {
transform: translateY(-5px);
}
.icon-container {
width: 80px;
height: 80px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto 20px;
}
.icon-container i {
font-size: 32px;
color: var(--white);
}
.about-sections h2 {
color: var(--primary-color);
margin-bottom: 15px;
text-align: center;
}
.features-section ul {
list-style-type: none;
padding: 0;
}
.features-section li {
margin-bottom: 10px;
display: flex;
align-items: center;
}
.features-section li i {
color: var(--primary-color);
margin-right: 10px;
}
.team-members {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
margin-top: 20px;
}
.team-member {
text-align: center;
margin: 10px;
flex: 1;
min-width: 150px;
}
.member-avatar {
width: 80px;
height: 80px;
background-color: var(--light-bg);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto 15px;
border: 3px solid var(--primary-color);
}
.member-avatar i {
font-size: 32px;
color: var(--primary-color);
}
.testimonials-section {
background: var(--white);
padding: 40px;
border-radius: 8px;
box-shadow: 0 4px 6px var(--shadow-light);
margin-bottom: 40px;
text-align: center;
}
.testimonials {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}
.testimonial {
background-color: var(--light-bg);
padding: 25px;
border-radius: 8px;
position: relative;
}
.quote {
color: var(--primary-color);
font-size: 24px;
margin-bottom: 15px;
}
.contact-section {
background: linear-gradient(to bottom, var(--light-bg), white);
padding: 40px;
border-radius: 8px;
box-shadow: 0 4px 6px var(--shadow-light);
text-align: center;
}
.contact-info {
display: flex;
justify-content: center;
flex-wrap: wrap;
margin-top: 30px;
}
.contact-item {
display: flex;
align-items: center;
margin: 0 20px 15px;
}
.contact-item i {
font-size: 20px;
color: var(--primary-color);
margin-right: 10px;
}
@media (max-width: 768px) {
.about-hero h1 {
font-size: 2rem;
}
.about-sections, .testimonials {
grid-template-columns: 1fr;
}
}
</style>
<div class="about-container">
<div class="about-hero">
<h1>About Our Result Management System</h1>
<p class="tagline">Empowering educators and students with seamless result management</p>
</div>
<div class="about-sections">
<section class="mission-section">
<div class="icon-container">
<i class="fas fa-bullseye"></i>
</div>
<h2>Our Mission</h2>
<p>We strive to simplify the academic result management process, making it efficient,
transparent, and accessible for educational institutions of all sizes.</p>
</section>
<section class="features-section">
<div class="icon-container">
<i class="fas fa-star"></i>
</div>
<h2>Key Features</h2>
<ul>
<li><i class="fas fa-check-circle"></i> Comprehensive student result tracking</li>
<li><i class="fas fa-check-circle"></i> Easy-to-use interface for administrators</li>
<li><i class="fas fa-check-circle"></i> Secure and efficient data management</li>
<li><i class="fas fa-check-circle"></i> Detailed performance analytics</li>
<li><i class="fas fa-check-circle"></i> Customizable grading systems</li>
</ul>
</section>
<section class="team-section">
<div class="icon-container">
<i class="fas fa-users"></i>
</div>
<h2>Our Team</h2>
<p>Our dedicated team of developers and education specialists work together to create a system
that meets the unique needs of modern educational institutions.</p>
<div class="team-members">
<div class="team-member">
<div class="member-avatar">
<i class="fas fa-user-tie"></i>
</div>
<h3>John Doe</h3>
<p>Lead Developer</p>
</div>
<div class="team-member">
<div class="member-avatar">
<i class="fas fa-user-tie"></i>
</div>
<h3>Jane Smith</h3>
<p>UX Designer</p>
</div>
<div class="team-member">
<div class="member-avatar">
<i class="fas fa-user-tie"></i>
</div>
<h3>Mark Johnson</h3>
<p>Education Specialist</p>
</div>
</div>
</section>
</div>
<div class="testimonials-section">
<h2>What Our Users Say</h2>
<div class="testimonials">
<div class="testimonial">
<div class="quote"><i class="fas fa-quote-left"></i></div>
<p>This system has completely transformed how we manage student results at our college. It's intuitive and powerful.</p>
<div class="testimonial-author">- Dr. Robert Williams, Principal</div>
</div>
<div class="testimonial">
<div class="quote"><i class="fas fa-quote-left"></i></div>
<p>As a teacher, I appreciate how easy it is to input and analyze student performance data. Highly recommended!</p>
<div class="testimonial-author">- Sarah Johnson, Math Teacher</div>
</div>
</div>
</div>
<div class="contact-section">
<h2>Get In Touch</h2>
<p>Have questions or feedback? We'd love to hear from you.</p>
<div class="contact-info">
<div class="contact-item">
<i class="fas fa-envelope"></i>
<span>contact@resultsystem.edu</span>
</div>
<div class="contact-item">
<i class="fas fa-phone"></i>
<span>+1 (555) 123-4567</span>
</div>
<div class="contact-item">
<i class="fas fa-map-marker-alt"></i>
<span>123 Education Lane, Learning City</span>
</div>
</div>
</div>
</div>
<?php
include('includes/footer.php');
?>