-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
671 lines (523 loc) · 29.1 KB
/
index.php
File metadata and controls
671 lines (523 loc) · 29.1 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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<!--- basic page needs
================================================== -->
<meta charset="utf-8">
<title>Class-ified</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/vendor.css">
<link rel="stylesheet" href="css/main.css">
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
<!-- favicons
================================================== -->
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body id="top">
<!-- preloader
================================================== -->
<div id="preloader">
<div id="loader" class="dots-jump">
<div></div>
<div></div>
<div></div>
</div>
</div>
<!-- header
================================================== -->
<header class="s-header">
<div class="header-logo">
<a class="site-logo" href="index.html">
<img src="images/mod-2.jpg" alt="Homepage" style="height: 75px; width: 75px;">
</a>
</div> <!-- end header-logo -->
<nav class="header-nav">
<a href="#0" class="header-nav__close" title="close"><span>Close</span></a>
<h3>Navigate to</h3>
<div class="header-nav__content">
<ul class="header-nav__list">
<li><a class="smoothscroll" href="#home" title="home">Home</a></li>
<li><a class="smoothscroll" href="#about" title="about">About</a></li>
<li><a class="smoothscroll" href="#services" title="services">Features</a></li>
<li><a class="smoothscroll" href="signup.php?id=<?php echo"attendee" ?>" title="works" target='_blank'>Register as Attendee</a></li>
<li><a class="smoothscroll" href="signup.php?id=<?php echo"instructor" ?>" title="contact" target='_blank'>Register as Instructor</a></li>
</ul>
<p></p>
<ul class="header-nav__social">
<li>
<a href="#0"><i class="fab fa-facebook"></i></a>
</li>
<li>
<a href="#0"><i class="fab fa-twitter"></i></a>
</li>
<li>
<a href="#0"><i class="fab fa-instagram"></i></a>
</li>
<li>
<a href="#0"><i class="fab fa-behance"></i></a>
</li>
<li>
<a href="#0"><i class="fab fa-dribbble"></i></a>
</li>
</ul>
</div> <!-- end header-nav__content -->
</nav> <!-- end header-nav -->
<a class="header-menu-toggle" href="#0">
<span class="header-menu-icon"></span>
</a>
</header> <!-- end s-header -->
<!-- home
================================================== -->
<section id="home" class="s-home page-hero target-section" data-parallax="scroll" data-image-src="images/mod-1.jpg" data-natural-width=3000 data-natural-height=2000 data-position-y=center>
<div class="grid-overlay">
<div></div>
</div>
<div class="home-content">
<div class="row home-content__main">
<h1>
Class-ified
</h1>
<h3>
You Are One Click From Entering The Class...
</h3>
<!--<div class="home-content__video">
<a class="video-link" href="https://player.vimeo.com/video/117310401?color=01aef0&title=0&byline=0&portrait=0" data-lity>
<span class="video-icon"></span>
<span class="video-text">Watch Video</span>
</a>
</div>-->
<div class="home-content__button">
<a href="login.php" class="smoothscroll btn btn--primary btn--large" style="background-color: #00ffff; color: #000; border: 2px solid #000;" target="_blank">
Login
</a>
<a href="#contact" class="smoothscroll btn btn--large" style="border: 1px solid #00ffff; ">
Class-ified Play
</a>
</div>
</div> <!-- end home-content__main -->
<div class="home-content__scroll">
<a href="#about" class="scroll-link smoothscroll">
Scroll
</a>
</div>
</div> <!-- end home-content -->
<ul class="home-social">
<li>
<a href="#0"><i class="fab fa-facebook-f" aria-hidden="true"></i><span>Facebook</span></a>
</li>
<li>
<a href="#0"><i class="fab fa-twitter" aria-hidden="true"></i><span>Twiiter</span></a>
</li>
<li>
<a href="#0"><i class="fab fa-instagram" aria-hidden="true"></i><span>Instagram</span></a>
</li>
<li>
<a href="#0"><i class="fab fa-behance" aria-hidden="true"></i><span>Behance</span></a>
</li>
<li>
<a href="#0"><i class="fab fa-dribbble" aria-hidden="true"></i><span>Dribbble</span></a>
</li>
</ul> <!-- end home-social -->
</section> <!-- end s-home -->
<!-- about
================================================== -->
<section id="about" class="s-about target-section">
<div class="row section-header bit-narrow" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead" style="color: #00ffff;">Who We Are</h3>
<h1 class="display-1">
We make the whole learning experience hastle-free and convinient for both the instructors and attendees.
</h1>
</div>
</div> <!-- end section-header -->
<div class="row bit-narrow" data-aos="fade-up">
<div class="col-full">
<p class="lead" style="font-weight: 900px; color: rgba(255,255,255,1);">
Now with class-fied play aspiring learners can learn from the lectures made by instructors in the particular field.All of them are sorted according to class for young learners and by the degree for those who are pursuing graduation across fields.
</p>
</div>
</div> <!-- end about-desc -->
<div class="row bit-narrow">
<div class="about-process process block-1-2 block-tab-full">
<div class="col-block item-process" data-aos="fade-up">
<div class="item-process__text">
<h4 class="item-title">Define</h4>
<p>
If You Are A Instructor Sign Up With the required details and create a account. Create as many classes as you wish and share the code of the specific class that will be given with the students. Attendees need to sign up and create their account, upon which they can enter their class with the code.
</p>
</div>
</div>
<div class="col-block item-process" data-aos="fade-up">
<div class="item-process__text">
<h4 class="item-title">Design</h4>
<p>
After The class has been made instructor can record lecture capturing both the screen with inbuilt whiteboard and his/her image. The lectures are saved in the instructor's profile which can be shared to any class, making the whole idea of online lecture simple without relying on live online sessions which get hit by poor connectivity.
</p>
</div>
</div>
<div class="col-block item-process" data-aos="fade-up">
<div class="item-process__text">
<h4 class="item-title">Build</h4>
<p>
The instructor can conduct tests of both subjective and objective patters with option for auto-correction and grading. With the inbuild note maker attendees can take note and save it for a particular lecture. The feature of allotting assignments with deadline make the things easy for the instructor
</p>
</div>
</div>
<div class="col-block item-process" data-aos="fade-up">
<div class="item-process__text">
<h4 class="item-title">Launch</h4>
<p>
With the inbuilt realtime chat and video call, peer discussion and doubt clarification is made easier than never before. We strongly believe in the importance of discipline that class room environment offers, so we have integrated a digital wellbeing tool to make sure that the attendees never get distracted in their goal to excellence.
</p>
</div>
</div>
</div> <!-- end process -->
</div> <!-- end row -->
</section> <!-- end s-about -->
<!-- services
================================================== -->
<section id='services' class="s-services target-section darker">
<div class="row section-header bit-narrow" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">What we do</h3>
<h1 class="display-1">
We take pride in what we do. Our features are designed to help
learners and instructors stand out and turn their ideas into digital realities.
</h1>
</div>
</div> <!-- end section-header -->
<div class="row bit-narrow services block-1-2 block-tab-full">
<div class="col-block item-service" data-aos="fade-up">
<div class="item-service__icon">
</div>
<div class="item-service__text">
<h3 class="item-title">Assignment</h3>
<p>With class-ified instructors can easily assign work and get get instant status of submission mark sheet ect. attendees will also receive mail the moment the instructor adds a new work. so nothing would get missed out.
</p>
</div>
</div>
<div class="col-block item-service" data-aos="fade-up">
<div class="item-service__icon">
</div>
<div class="item-service__text">
<h3 class="item-title">Video Calling</h3>
<p>With inbuild video calling platform start video conferensing just by clicking the one link for that particular class. A unique meeting link has been assigned for each class, so you the same link to start the meeting whenever you want.
</p>
</div>
</div>
<div class="col-block item-service" data-aos="fade-up">
<div class="item-service__icon">
</div>
<div class="item-service__text">
<h3 class="item-title">Chat</h3>
<p>Chat with your instructor or your fellow classmates by just clicking on that particular user under people section.
A user can chat only with members of the classes that he is part of. So there is complete privacy with regarding to chat
</p>
</div>
</div>
<div class="col-block item-service" data-aos="fade-up">
<div class="item-service__icon">
</div>
<div class="item-service__text">
<h3 class="item-title">Test Portal</h3>
<p>The One of its kind test portal makes the process of testing extremely easy for both instructors and attendees. Attendess can instantly view their mark after the test. A unique feature of this test portal is that the questions entered by the instructor would be shown in jumbled order(both questions and options). So this portal makes the whole process of testing fair.
</p>
</div>
</div>
<div class="col-block item-service" data-aos="fade-up">
<div class="item-service__icon">
</div>
<div class="item-service__text">
<h3 class="item-title">Screen And Lecture Recorder</h3>
<p>Not able to listen properly?...not able to sink with the flow of class?...worry not we have got you covered. With the inbuild screen recorder with the three options available you can record screen and screen audio, or sccreen with your audio, or your image with your audio. After recording you can immideately download it to your device. With the inbuild whiteboard and speech to note maker the instructor would be greatly benefitted
</p>
</div>
</div>
<div class="col-block item-service" data-aos="fade-up">
<div class="item-service__icon"></div>
<div class="item-service__text">
<h3 class="item-title">Note Maker</h3>
<p>
Have you always been lazy to take notes or not able to properly listen to class along with taking notes?....this is for you all you need to do is open the note maker just press start recording and it will convert all the speech to text...and you can save to your account. You can view it anytime by clicking my notes in dashboard. With this instructor while recording lecture itself can convert all his speech to text so that he can just share the notes directly.
</p>
</div>
</div>
</div> <!-- end services -->
</section> <!-- end s-services -->
<!-- works
================================================== -->
<section id="works" class="s-works target-section">
<div class="row section-header has-bottom-sep narrow target-section" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">Product Images</h3>
<h1 class="display-1">
</h1>
</div>
</div> <!-- end section-header -->
<div class="row masonry-wrap">
<div class="masonry">
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/g-shutterbug.png" class="thumb-link" title="Shutterbug" data-size="1050x700">
<img src="images/portfolio/lady-shutterbug.png"
srcset="images/portfolio/lady-shutterbug.png 1x, images/portfolio/lady-shutterbug@2x.png 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Virtual Product image
</h3>
<p class="item-folio__cat">
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>View of the application once the user enters with list of all classes joined and option to create or join new</p>
</div>
</div>
</div> <!-- end masonry__brick -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/Screenshot2.png" class="thumb-link" title="Woodcraft" data-size="1050x700">
<img src="images/portfolio/Screenshot2.png"
srcset="images/portfolio/Screenshot2.png 1x, images/portfolio/Screenshot2.png 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Virtual Product image
</h3>
<p class="item-folio__cat">
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>A view of chat application.</p>
</div>
</div>
</div> <!-- end masonry__brick -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/Screenshot3.png" class="thumb-link" title="The Beetle Car" data-size="1050x700">
<img src="images/portfolio/Screenshot3.png"
srcset="images/portfolio/Screenshot3.png 1x, images/portfolio/Screenshot3.png 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Virtual Product image
</h3>
<p class="item-folio__cat">
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
6
<div class="item-folio__caption">
<p>Assignment page where users can submit for their work and instructors can see the work and assign marks </p>
</div>
</div>
</div> <!-- end masonry__brick -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/Screenshot4.png" class="thumb-link" title="Grow Green" data-size="1050x700">
<img src="images/portfolio/Screenshot4.png"
srcset="images/portfolio/Screenshot4.png 1x, images/portfolio/Screenshot4.png 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Virtual Product image
</h3>
<p class="item-folio__cat">
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>A view of a instructor to create a new test</p>
</div>
</div>
</div> <!-- end masonry__brick -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/Screenshot5.png" class="thumb-link" title="Guitarist" data-size="1050x700">
<img src="images/portfolio/Screenshot5.png"
srcset="images/portfolio/Screenshot5.png 1x, images/portfolio/Screenshot5.png 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Virtual Product image
</h3>
<p class="item-folio__cat">
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</div>
</div>
</div> <!-- end masonry__brick -->
<div class="masonry__brick" data-aos="fade-up">
<div class="item-folio">
<div class="item-folio__thumb">
<a href="images/portfolio/gallery/Screenshot6.png" class="thumb-link" title="Palmeira" data-size="1050x700">
<img src="images/portfolio/Screenshot6.png"
srcset="images/portfolio/Screenshot6.png 1x, images/portfolio/Screenshot6.png 2x" alt="">
</a>
</div>
<div class="item-folio__text">
<h3 class="item-folio__title">
Virtual Product image
</h3>
<p class="item-folio__cat">
</p>
</div>
<a href="https://www.behance.net/" class="item-folio__project-link" title="Project link">
<i class="icon-link"></i>
</a>
<div class="item-folio__caption">
<p>Vero molestiae sed aut natus excepturi. Et tempora numquam. Temporibus iusto quo.Unde dolorem corrupti neque nisi.</p>
</div>
</div>
</div> <!-- end masonry__brick -->
</div> <!-- end masonry -->
</div> <!-- end masonry-wrap -->
</section> <!-- end s-works -->
<!-- clients
================================================== -->
<!-- testimonies
================================================== -->
<section class="s-testimonials">
<div class="testimonials__icon" data-aos="fade-up"></div>
<div class="row testimonials narrow">
<div class="col-full testimonials__slider" data-aos="fade-up">
<div class="testimonials__slide">
<p style="font-size: 45px;">" Online learning is not the next big thing, it is the now big thing...”</p>
</div> <!-- end testimonials__slide -->
<div class="testimonials__slide">
<p>“The most important principle for designing lively eLearning is to see eLearning design not as information design but as designing an experience....”</p>
</div> <!-- end testimonials__slide -->
<!-- end testimonials__slide -->
</div> <!-- end testimonials__slider -->
</div> <!-- end testimonials -->
</section> <!-- end s-testimonials -->
<!-- contact
================================================== -->
<section id="contact" class="s-contact target-section" style="padding-top: 50px; padding-bottom: 50px;">
<div class="grid-overlay">
<div></div>
</div>
<div class="row section-header narrow" data-aos="fade-up">
<div class="col-full">
<h3 class="subhead">Keep In Touch</h3>
<h4 class="display-1" style="font-size: 20px;">Feel free to contact us for any <br> queries and suggestions </h4>
</div>
</div> <!-- end section-header -->
<div class="row contact-main" data-aos="fade-up" style="margin-top: 35px;">
<div class="col-full">
<p class="contact-email" >
<a href="mailto:#0" style="font-size: 30px;">msecenitt@gmail.com</a>
</p>
<p class="contact-address" style="font-size: 25px;">
Agate Hostel <br>
Nit trichy, Tamil Nadu, India
</p>
<p class="contact-numbers" style="font-size: 25px;">
+91 6380747893
</p>
<ul class="contact-social">
<li>
<a href="#0"><i class="fab fa-facebook"></i></a>
</li>
<li>
<a href="#0"><i class="fab fa-twitter"></i></a>
</li>
<li>
<a href="#0"><i class="fab fa-instagram"></i></a>
</li>
<li>
<a href="#0"><i class="fab fa-behance"></i></a>
</li>
<li>
<a href="#0"><i class="fab fa-dribbble"></i></a>
</li>
</ul>
</div>
</div>
</section> <!-- end s-contact -->
<!-- footer
================================================== -->
<footer >
<div class="row">
<div class="col-full ss-copyright">
<span>© Copyright Sree charan</span>
<span>Design with ❤ by <a href="#">Sree Charan M</a></span>
</div>
</div>
<div class="ss-go-top">
<a class="smoothscroll" title="Back to Top" href="#top" >Back to Top</a>
</div>
</footer>
<!-- photoswipe background
================================================== -->
<div aria-hidden="true" class="pswp" role="dialog" tabindex="-1">
<div class="pswp__bg"></div>
<div class="pswp__scroll-wrap">
<div class="pswp__container">
<div class="pswp__item"></div>
<div class="pswp__item"></div>
<div class="pswp__item"></div>
</div>
<div class="pswp__ui pswp__ui--hidden">
<div class="pswp__top-bar">
<div class="pswp__counter"></div><button class="pswp__button pswp__button--close" title="Close (Esc)"></button> <button class="pswp__button pswp__button--share" title=
"Share"></button> <button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button> <button class="pswp__button pswp__button--zoom" title=
"Zoom in/out"></button>
<div class="pswp__preloader">
<div class="pswp__preloader__icn">
<div class="pswp__preloader__cut">
<div class="pswp__preloader__donut"></div>
</div>
</div>
</div>
</div>
<div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
<div class="pswp__share-tooltip"></div>
</div><button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)"></button> <button class="pswp__button pswp__button--arrow--right" title=
"Next (arrow right)"></button>
<div class="pswp__caption">
<div class="pswp__caption__center"></div>
</div>
</div>
</div>
</div> <!-- end photoSwipe background -->
<!-- Java Script
================================================== -->
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
</body>