-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathabout.php
More file actions
366 lines (324 loc) · 18.5 KB
/
about.php
File metadata and controls
366 lines (324 loc) · 18.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
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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
<html>
<head>
<title>About SyllabiSync</title>
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" />
<!-- <link rel="stylesheet" href="/assets/about.css"> -->
<link rel="stylesheet" href="/SyllabiSync/src/output.css">
<script src="https://cdn.tailwindcss.com"></script>
<!-- AOS CSS -->
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<!-- AOS JS -->
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function() {
AOS.init({
duration: 1000,
once: true,
offset: 100
});
});
</script>
<style>
/* ABOUT */
/* who are we */
#about-head{
display: flex;
align-items: center;
}
#about-head img{
width: 50%;
height: auto;
}
#about-head div{
padding-left: 40px;
}
#about-head p{
padding:20px 0 20px 0;
}
/* about app */
#about-app{
text-align: center;
}
#about-app .video{
width: 70%;
height: 100%;
margin: 30px auto 0 auto;
}
#about-app .video video{
width: 100%;
height: 100%;
border-radius: 20px;
}
/* Newsletter */
#newsletter{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
align-items: center;
background-image: url('/assets/image/banner/b14.png');
background-repeat: no-repeat;
background-position: 20% 30%;
background-color: #000501;
padding: 60px 40px;
margin: 0px;
}
#newsletter h4{
font-size: 22px;
font-weight: 700;
color: #fff;
}
#newsletter p{
font-size: 14px;
font-weight: 600;
color: #818ea0;
}
#newsletter p span{
color: #ffbd27;
}
#newsletter .form{
display: flex;
width: 40%;
}
#newsletter input{
height: 3.125rem;
padding: 0 1.25rem;
font-size: 14px;
width: 100%;
border: 1px solid transparent ;
border-radius: 4px;
outline: none;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
background-color: #fff;
}
#newsletter button{
background-color: #1E88E5;
color: #fff;
white-space: nowrap;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
</style>
</head>
<body>
<!--NAVBAR -->
<nav class="flex justify-around gap-10 fixed top-0 h-20 w-full p-6 text-center items-center shadow-md shadow-gray-400/50 bg-white z-50">
<div class="container mx-auto flex items-center justify-between p-5">
<!-- logo -->
<div class="flex items-center space-x-2">
<span class="text-2xl text-white bg-blue-600 px-2 py-1 rounded-md font-semibold">Syllabi</span>
<span class="text-2xl text-blue-600 font-semibold">Sync</span>
</div>
<!-- Desktop Menu -->
<div class="hidden md:flex justify-between space-x-8 gap-8 font-medium ">
<a href="landing_page.php" class="relative text-base text-gray-800 hover:text-blue-500 after:block after:h-[2px] after:w-0 after:bg-blue-500 after:transition-all after:duration-300 hover:after:w-full">Home</a>
<a href="about.php" class="relative text-base text-gray-800 hover:text-blue-500 after:block after:h-[2px] after:w-0 after:bg-blue-500 after:transition-all after:duration-300 hover:after:w-full">About</a>
<a href="Curriculum.php" class="relative text-base text-gray-800 hover:text-blue-500 after:block after:h-[2px] after:w-0 after:bg-blue-500 after:transition-all after:duration-300 hover:after:w-full">Curriculum</a>
<a href="contact.php" class="relative text-base text-gray-800 hover:text-blue-500 after:block after:h-[2px] after:w-0 after:bg-blue-500 after:transition-all after:duration-300 hover:after:w-full">Contact</a>
</div>
</div>
</nav>
<!-- MAIN BANNER -->
<section id="page-header" class="about-header w-full h-[50vh] bg-cover flex justify-center text-center flex-col p-4 text-white bg-[url('/SyllabiSync/assets/image/banner/banner.png')] shadow-lg mt-20">
<h2 class="font-bold text-5xl text-white text-shadow-md">#KnowUs</h2>
<p class="text-white text-shadow-md">LET ME TELL YOU ABOUT OURSELVES</p>
</section>
<!-- WHO ARE WE -->
<section id="about-head" class="flex justify-center items-center gap-8 py-16 bg-gray-50 mx-8 my-8" data-aos="fade-up" data-aos-once="false">
<img src="assets/image/about/a1.jpg" alt="" class="w-1/2">
<div class="w-1/2 pr-8">
<h2 class="font-bold text-5xl text-blue-600 mb-4">Who We Are</h2>
<p class="text-gray-700 mb-4">We are a team of passionate B.Tech Computer Science students from section KM010 (P123), currently studying at Lovely Professional University. <strong>SyllabiSync</strong> is a web platform we built as part of our CA2 project for the course <em>INT219 - Front-End Web Development & INT220 - Server Side Scripting</em>.
Our mission is to simplify and unify access to academic curricula across various institutions. We aim to make it easier for students, faculty, and institutions to access, compare, and manage curriculum content seamlessly and efficiently.</p>
<abbr title="" class="text-gray-600">SyllabiSync simplifies academic management by enabling quick curriculum access, updates, and synchronization across institutions.</abbr>
<br><br>
<marquee bgcolor="#ccc" loop="-1" scrollamount="10" width="100%" class="text-gray-700">Empowering institutions to stay updated, stay synced, and stay ahead with standardized curriculum solutions — SyllabiSync</marquee>
</div>
</section>
<!-- TEAM MEMBERS -->
<section class="py-8 bg-white" data-aos="fade-up" data-aos-once="false">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center text-blue-600 mb-8">Our Team</h2>
<div class="flex justify-center">
<div class="flex items-center space-x-[-12px]">
<!-- 1st Account -->
<a href="https://github.com/CodeByAshuu" target="_blank">
<img src="https://avatars.githubusercontent.com/u/141819298?v=4" alt="Ashu" class="w-12 h-12 rounded-full border-2 border-white" />
</a>
<!-- 2nd Account -->
<a href="https://github.com/Dheeraj-Kapuganti" target="_blank">
<img src="https://avatars.githubusercontent.com/u/148957514?v=4" alt="Dheeraj" class="w-12 h-12 rounded-full border-2 border-white" />
</a>
<!-- 3rd Account -->
<a href="https://github.com/linuxuser123456789" target="_blank">
<img src="https://avatars.githubusercontent.com/u/97976303?v=4" alt="LinuxUser" class="w-12 h-12 rounded-full border-2 border-white" />
</a>
<!-- 4th Account -->
<a href="https://github.com/RI991" target="_blank">
<img src="https://avatars.githubusercontent.com/u/150167549?v=4" alt="Account 4" class="w-12 h-12 rounded-full border-2 border-white" />
</a>
<!-- +99 Circle -->
<div class="w-12 h-12 flex items-center justify-center rounded-full bg-black text-white text-sm font-semibold border-2 border-white">
+99
</div>
</div>
</div>
</div>
</section>
<!-- OUR MISSION -->
<section class="py-16 bg-white" data-aos="fade-up" data-aos-once="false">
<div class="container mx-auto px-4">
<h2 class="font-bold text-4xl text-blue-600 text-center mb-8">Our Mission</h2>
<blockquote class="text-lg text-gray-700 text-center max-w-3xl mx-auto p-8 bg-gray-50 rounded-lg shadow-sm">
At SyllabiSync, our mission is to bring consistency and transparency to academic programs.
We envision a future where students and institutions can collaborate and innovate on a shared academic foundation.
</blockquote>
</div>
</section>
<!-- WHAT WE OFFER -->
<section class="py-16 px-16 bg-gray-50 my-8" data-aos="fade-up" data-aos-once="false">
<div class="container mx-auto px-4">
<h2 class="font-bold text-4xl text-blue-600 mb-12 text-center">What We Offer</h2>
<div class="grid md:grid-cols-2 lg:grid-cols-4 gap-8">
<div class="bg-white p-6 rounded-lg shadow-sm hover:shadow-md transition-shadow duration-300 transform hover:-translate-y-1">
<h3 class="text-xl font-semibold text-gray-800 mb-3">Standardized Curriculum</h3>
<p class="text-gray-600">View and share standardized curriculum across institutions</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm hover:shadow-md transition-shadow duration-300 transform hover:-translate-y-1">
<h3 class="text-xl font-semibold text-gray-800 mb-3">Curriculum Comparison</h3>
<p class="text-gray-600">Compare institution-specific curriculum easily</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm hover:shadow-md transition-shadow duration-300 transform hover:-translate-y-1">
<h3 class="text-xl font-semibold text-gray-800 mb-3">Academic Navigation</h3>
<p class="text-gray-600">Easy navigation across different academic streams</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-sm hover:shadow-md transition-shadow duration-300 transform hover:-translate-y-1">
<h3 class="text-xl font-semibold text-gray-800 mb-3">Resource Sharing</h3>
<p class="text-gray-600">Share resources between students and faculty</p>
</div>
</div>
</div>
</section>
<!-- ABOUT APP -->
<!-- <section id="about-app" class="section-p1">
<h1>Download Our <a href="#" class="font-bold text-blue-600">App</a></h1>
<div class="video">
<video autoplay muted loop src="img/about/1.mp4"></video>
</div>
</section> -->
<!-- FEATURES SECTION (issue) -->
<section class="py-16 bg-white my-8" data-aos="fade-up" data-aos-once="false">
<div class="container mx-auto px-4">
<h1 class="text-5xl font-semibold text-center mb-12">Key <span class="text-blue-600">Features</span></h1>
<div class="grid md:grid-cols-2 lg:grid-cols-4 gap-8">
<div class="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition-shadow duration-300 transform hover:-translate-y-1 border border-gray-100" data-aos="zoom-in" data-aos-once="false" data-aos-delay="100">
<img src="https://cdn-icons-png.flaticon.com/512/2436/2436873.png" alt="Standardization" class="h-16 w-16 mb-4 mx-auto">
<h3 class="text-xl font-semibold text-gray-800 mb-2 text-center">Standardized Curriculum</h3>
<p class="text-gray-600 text-center">Ensure consistency across all technical institutions</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition-shadow duration-300 transform hover:-translate-y-1 border border-gray-100" data-aos="zoom-in" data-aos-once="false" data-aos-delay="200">
<img src="https://cdn-icons-png.flaticon.com/512/2436/2436876.png" alt="Quality" class="h-16 w-16 mb-4 mx-auto">
<h3 class="text-xl font-semibold text-gray-800 mb-2 text-center">Quality Assurance</h3>
<p class="text-gray-600 text-center">Maintain high educational standards through structured frameworks</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition-shadow duration-300 transform hover:-translate-y-1 border border-gray-100" data-aos="zoom-in" data-aos-once="false" data-aos-delay="300">
<img src="https://cdn-icons-png.flaticon.com/512/2436/2436875.png" alt="Updates" class="h-16 w-16 mb-4 mx-auto">
<h3 class="text-xl font-semibold text-gray-800 mb-3 text-center">Easy Updates</h3>
<p class="text-gray-600 text-center">Seamless curriculum updates and version control</p>
</div>
<div class="bg-white p-6 rounded-lg shadow-md hover:shadow-lg transition-shadow duration-300 transform hover:-translate-y-1 border border-gray-100" data-aos="zoom-in" data-aos-once="false" data-aos-delay="400">
<img src="https://cdn-icons-png.flaticon.com/512/2436/2436877.png" alt="Sharing" class="h-16 w-16 mb-4 mx-auto">
<h3 class="text-xl font-semibold text-gray-800 mb-3 text-center">Resource Sharing</h3>
<p class="text-gray-600 text-center">Collaborate and share resources across institutions</p>
</div>
</div>
</div>
</section>
<!-- NEWSLETTER -->
<section id="newsletter" class="py-16 bg-gray-100">
<div class="container mx-auto px-4">
<div class="max-w-4xl mx-auto">
<div class="text-center mb-8">
<h4 class="text-2xl font-bold text-gray-800 mb-2">Sign Up For Newsletter</h4>
<p class="text-gray-600">Get E-mail Updates About Our Latest Updates And <span class="text-blue-600 font-semibold">Special Offers</span></p>
</div>
<?php
// Display success/error messages
if (isset($_GET['success']) && $_GET['success'] == 'subscribed') {
echo '<div class="bg-green-100 border border-green-400 text-green-700 px-4 py-3 rounded relative mb-4" role="alert">
<span class="block sm:inline">Thank you for subscribing to our newsletter!</span>
</div>';
}
if (isset($_GET['error'])) {
$error = $_GET['error'];
$message = '';
if ($error == 'invalid_email') {
$message = 'Please enter a valid email address.';
} elseif ($error == 'already_subscribed') {
$message = 'This email is already subscribed to our newsletter.';
} elseif ($error == 'database_error') {
$message = 'An error occurred. Please try again later.';
}
echo '<div class="bg-red-100 border border-red-400 text-red-700 px-4 py-3 rounded relative mb-4" role="alert">
<span class="block sm:inline">' . $message . '</span>
</div>';
}
?>
<form action="subscribe.php" method="POST" class="flex flex-col md:flex-row gap-4 justify-center items-center">
<div class="w-full md:w-2/3">
<input type="email" name="email" placeholder="Your email address" required
class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent">
</div>
<button type="submit" name="subscribe"
class="w-full md:w-auto px-6 py-3 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition duration-300">
Subscribe
</button>
</form>
</div>
</div>
</section>
<!-- FOOTER -->
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-4">
<div class="grid md:grid-cols-4 gap-8">
<div>
<h4 class="text-lg font-semibold mb-4">About AICTE</h4>
<p class="text-gray-400">
All India Council for Technical Education (AICTE) is the statutory body and a national-level council for technical education.
</p>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Quick Links</h4>
<ul class="space-y-2 text-gray-400">
<li><a href="landing_page.php" class="hover:text-orange-300">Home</a></li>
<li><a href="about.php" class="hover:text-orange-300">About</a></li>
<li><a href="#" class="hover:text-orange-300">Curriculum</a></li>
<li><a href="contact.php" class="hover:text-orange-300">Contact</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Resources</h4>
<ul class="space-y-2 text-gray-400">
<li><a href="#" class="hover:text-orange-300">Documentation</a></li>
<li><a href="#" class="hover:text-orange-300">Guidelines</a></li>
<li><a href="#" class="hover:text-orange-300">FAQs</a></li>
<li><a href="#" class="hover:text-orange-300">Support</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Contact</h4>
<address class="text-gray-400 not-italic">
Nelson Mandela Marg<br>
Vasant Kunj, New Delhi-110070<br>
India<br>
<a href="mailto:support@aicte-india.org" class="hover:text-orange-300">support@aicte-india.org</a>
</address>
</div>
</div>
<div class="mt-8 pt-8 border-t border-gray-800 text-center text-gray-400">
<p>© <?php echo date('Y'); ?> CTRL+C. All rights reserved.</p>
</div>
</div>
</footer>
</body>
</html>