11 |
12 |
19 |
67 |
84 |
85 |
86 |
87 |
88 |
109 |
--------------------------------------------------------------------------------
/chatdisplay.php:
--------------------------------------------------------------------------------
1 |
44 |
45 | 0)
71 | {
72 | while($row = mysqli_fetch_assoc($result))
73 | {
74 |
75 |
76 | if($row["username"]=='admin')
77 | {
78 | echo "
".$row["message"]."".substr($row["time"],8)."";
79 | }
80 | else
81 | {
82 | echo "
".$row["message"]."".substr($row["time"],8)."";
83 | }
84 |
85 |
86 | }
87 | }
88 |
89 |
90 |
91 | }
92 | ?>
--------------------------------------------------------------------------------
/chatinsert.php:
--------------------------------------------------------------------------------
1 |
11 |
35 |
38 |
39 |
40 |
41 | ", time());
75 | $sql = "insert into chattable values('$username','$message','$time')";
76 | $result = mysqli_query($conn,$sql);
77 | // echo "message sent!";
78 | header('Location: chat2.php');
79 |
80 |
81 | }}}
82 | ?>
--------------------------------------------------------------------------------
/contact.php:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |
13 |
14 |
33 |
34 |
35 |
36 |
37 | ";
49 | echo "
At least one field is empty!
All inputs are requires to send suggestions!
";
50 | echo "";
51 | }
52 | else
53 | {
54 |
55 | if($_SERVER['REQUEST_METHOD']=="GET")//con establish
56 | {
57 | $localhost = "localhost";
58 | $usernamew = "root";
59 | $passwordw = "";
60 | $db = "expdb";
61 | $conn = mysqli_connect($localhost,$usernamew,$passwordw,$db);
62 | if(!$conn){
63 | echo "";
64 | }
65 | else
66 | {
67 | echo "";
68 | }
69 |
70 |
71 | $time= date("m/d/y G.i:s
", time());
72 | $sql = "insert into contacttable values('$fullname','$email','$message','$subject','$time')";
73 | $result = mysqli_query($conn,$sql);
74 | echo"
";
75 | echo "Thank You,".$fullname."
We appreciate you for taking out your valueable time for us
";
76 | echo "";
77 |
78 |
79 |
80 |
81 | }
82 | else
83 | {
84 | echo "error";
85 | }
86 |
87 | }}
88 | ?>
--------------------------------------------------------------------------------
/contactform/contactform.js:
--------------------------------------------------------------------------------
1 | jQuery(document).ready(function($) {
2 | "use strict";
3 |
4 | //Contact
5 | $('form.contactForm').submit(function() {
6 | var f = $(this).find('.form-group'),
7 | ferror = false,
8 | emailExp = /^[^\s()<>@,;:\/]+@\w[\w\.-]+\.[a-z]{2,}$/i;
9 |
10 | f.children('input').each(function() { // run all inputs
11 |
12 | var i = $(this); // current input
13 | var rule = i.attr('data-rule');
14 |
15 | if (rule !== undefined) {
16 | var ierror = false; // error flag for current input
17 | var pos = rule.indexOf(':', 0);
18 | if (pos >= 0) {
19 | var exp = rule.substr(pos + 1, rule.length);
20 | rule = rule.substr(0, pos);
21 | } else {
22 | rule = rule.substr(pos + 1, rule.length);
23 | }
24 |
25 | switch (rule) {
26 | case 'required':
27 | if (i.val() === '') {
28 | ferror = ierror = true;
29 | }
30 | break;
31 |
32 | case 'minlen':
33 | if (i.val().length < parseInt(exp)) {
34 | ferror = ierror = true;
35 | }
36 | break;
37 |
38 | case 'email':
39 | if (!emailExp.test(i.val())) {
40 | ferror = ierror = true;
41 | }
42 | break;
43 |
44 | case 'checked':
45 | if (! i.is(':checked')) {
46 | ferror = ierror = true;
47 | }
48 | break;
49 |
50 | case 'regexp':
51 | exp = new RegExp(exp);
52 | if (!exp.test(i.val())) {
53 | ferror = ierror = true;
54 | }
55 | break;
56 | }
57 | i.next('.validation').html((ierror ? (i.attr('data-msg') !== undefined ? i.attr('data-msg') : 'wrong Input') : '')).show('blind');
58 | }
59 | });
60 | f.children('textarea').each(function() { // run all inputs
61 |
62 | var i = $(this); // current input
63 | var rule = i.attr('data-rule');
64 |
65 | if (rule !== undefined) {
66 | var ierror = false; // error flag for current input
67 | var pos = rule.indexOf(':', 0);
68 | if (pos >= 0) {
69 | var exp = rule.substr(pos + 1, rule.length);
70 | rule = rule.substr(0, pos);
71 | } else {
72 | rule = rule.substr(pos + 1, rule.length);
73 | }
74 |
75 | switch (rule) {
76 | case 'required':
77 | if (i.val() === '') {
78 | ferror = ierror = true;
79 | }
80 | break;
81 |
82 | case 'minlen':
83 | if (i.val().length < parseInt(exp)) {
84 | ferror = ierror = true;
85 | }
86 | break;
87 | }
88 | i.next('.validation').html((ierror ? (i.attr('data-msg') != undefined ? i.attr('data-msg') : 'wrong Input') : '')).show('blind');
89 | }
90 | });
91 | if (ferror) return false;
92 | else var str = $(this).serialize();
93 | $.ajax({
94 | type: "POST",
95 | url: "contactform/contactform.php",
96 | data: str,
97 | success: function(msg) {
98 | // alert(msg);
99 | if (msg == 'OK') {
100 | $("#sendmessage").addClass("show");
101 | $("#errormessage").removeClass("show");
102 | $('.contactForm').find("input, textarea").val("");
103 | } else {
104 | $("#sendmessage").removeClass("show");
105 | $("#errormessage").addClass("show");
106 | $('#errormessage').html(msg);
107 | }
108 |
109 | }
110 | });
111 | return false;
112 | });
113 |
114 | });
115 |
--------------------------------------------------------------------------------
/contactform/readme.txt:
--------------------------------------------------------------------------------
1 | Fully working PHP/AJAX contact form is available in the pro version.
2 | You can buy it from: https://bootstrapmade.com/buy/?theme=Mentor
--------------------------------------------------------------------------------
/course1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/course1.jpg
--------------------------------------------------------------------------------
/course10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/course10.png
--------------------------------------------------------------------------------
/course11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/course11.png
--------------------------------------------------------------------------------
/course12.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/course12.png
--------------------------------------------------------------------------------
/course13.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/course13.png
--------------------------------------------------------------------------------
/course14.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/course14.png
--------------------------------------------------------------------------------
/course15.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/course15.jpg
--------------------------------------------------------------------------------
/course16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/course16.png
--------------------------------------------------------------------------------
/course2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/course2.jpg
--------------------------------------------------------------------------------
/course3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/course3.jpg
--------------------------------------------------------------------------------
/course4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/course4.png
--------------------------------------------------------------------------------
/course5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/course5.jpg
--------------------------------------------------------------------------------
/course5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/course5.png
--------------------------------------------------------------------------------
/course6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/course6.jpg
--------------------------------------------------------------------------------
/course7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/course7.jpg
--------------------------------------------------------------------------------
/course7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/course7.png
--------------------------------------------------------------------------------
/course8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/course8.jpg
--------------------------------------------------------------------------------
/course9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/course9.png
--------------------------------------------------------------------------------
/courses/android.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/courses/android.pdf
--------------------------------------------------------------------------------
/courses/angularjs.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/courses/angularjs.pdf
--------------------------------------------------------------------------------
/courses/bootstrap.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/courses/bootstrap.pdf
--------------------------------------------------------------------------------
/courses/c++.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/courses/c++.pdf
--------------------------------------------------------------------------------
/courses/jade.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/courses/jade.pdf
--------------------------------------------------------------------------------
/courses/java.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/courses/java.pdf
--------------------------------------------------------------------------------
/courses/javascript.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/courses/javascript.pdf
--------------------------------------------------------------------------------
/courses/reactjs.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/courses/reactjs.pdf
--------------------------------------------------------------------------------
/css/imagehover.min.css:
--------------------------------------------------------------------------------
1 | /*
2 | * ImageHover.css - http://www.imagehover.io
3 | */
4 | [class*=' imghvr-'],[class^=imghvr-]{position:relative;display:inline-block;margin:0;max-width:100%;background-color:#2266a5;color:#fff;overflow:hidden;-webkit-backface-visibility:hidden;backface-visibility:hidden;-moz-osx-font-smoothing:grayscale;-webkit-transform:translateZ(0);transform:translateZ(0)}[class*=' imghvr-']>img,[class^=imghvr-]>img{vertical-align:top;max-width:100%}[class*=' imghvr-'] figcaption,[class^=imghvr-] figcaption{background-color:#135796;padding:30px;position:absolute;top:0;bottom:0;left:0;right:0;color:#fff}[class*=' imghvr-'] figcaption h1,[class*=' imghvr-'] figcaption h2,[class*=' imghvr-'] figcaption h3,[class*=' imghvr-'] figcaption h4,[class*=' imghvr-'] figcaption h5,[class*=' imghvr-'] figcaption h6,[class^=imghvr-] figcaption h1,[class^=imghvr-] figcaption h2,[class^=imghvr-] figcaption h3,[class^=imghvr-] figcaption h4,[class^=imghvr-] figcaption h5,[class^=imghvr-] figcaption h6{color:#fff}[class*=' imghvr-'] a,[class^=imghvr-] a{position:absolute;top:0;bottom:0;left:0;right:0;z-index:1}[class*=' imghvr-'],[class*=' imghvr-'] *,[class*=' imghvr-'] :after,[class*=' imghvr-'] :before,[class*=' imghvr-']:after,[class*=' imghvr-']:before,[class^=imghvr-],[class^=imghvr-] *,[class^=imghvr-] :after,[class^=imghvr-] :before,[class^=imghvr-]:after,[class^=imghvr-]:before{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all .35s ease;transition:all .35s ease}[class*=' imghvr-fade'] figcaption,[class*=' imghvr-fade']:hover>img,[class^=imghvr-fade] figcaption,[class^=imghvr-fade]:hover>img{opacity:0}[class*=' imghvr-fade']:hover figcaption,[class^=imghvr-fade]:hover figcaption{opacity:1}[class*=' imghvr-fade']:hover figcaption,[class*=' imghvr-fade']:hover>img,[class^=imghvr-fade]:hover figcaption,[class^=imghvr-fade]:hover>img{-webkit-transform:translate(0,0);transform:translate(0,0)}.imghvr-fade-in-up figcaption{-webkit-transform:translate(0,15%);transform:translate(0,15%)}.imghvr-fade-in-down figcaption{-webkit-transform:translate(0,-15%);transform:translate(0,-15%)}.imghvr-fade-in-left figcaption{-webkit-transform:translate(-15%,0);transform:translate(-15%,0)}.imghvr-fade-in-right figcaption{-webkit-transform:translate(15%,0);transform:translate(15%,0)}[class*=' imghvr-push-']:hover figcaption,[class^=imghvr-push-]:hover figcaption{-webkit-transform:translate(0,0);transform:translate(0,0)}.imghvr-push-up figcaption{-webkit-transform:translateY(100%);transform:translateY(100%)}.imghvr-push-down figcaption,.imghvr-push-up:hover>img{-webkit-transform:translateY(-100%);transform:translateY(-100%)}.imghvr-push-down:hover>img{-webkit-transform:translateY(100%);transform:translateY(100%)}.imghvr-push-left figcaption{-webkit-transform:translateX(100%);transform:translateX(100%)}.imghvr-push-left:hover>img,.imghvr-push-right figcaption{-webkit-transform:translateX(-100%);transform:translateX(-100%)}.imghvr-push-right:hover>img{-webkit-transform:translateX(100%);transform:translateX(100%)}[class*=' imghvr-slide-']:hover figcaption,[class^=imghvr-slide-]:hover figcaption{-webkit-transform:translate(0,0);transform:translate(0,0)}.imghvr-slide-up figcaption{-webkit-transform:translateY(100%);transform:translateY(100%)}.imghvr-slide-down figcaption{-webkit-transform:translateY(-100%);transform:translateY(-100%)}.imghvr-slide-left figcaption{-webkit-transform:translateX(100%);transform:translateX(100%)}.imghvr-slide-right figcaption{-webkit-transform:translateX(-100%);transform:translateX(-100%)}.imghvr-slide-top-left figcaption{-webkit-transform:translate(-100%,-100%);transform:translate(-100%,-100%)}.imghvr-slide-top-right figcaption{-webkit-transform:translate(100%,-100%);transform:translate(100%,-100%)}.imghvr-slide-bottom-left figcaption{-webkit-transform:translate(-100%,100%);transform:translate(-100%,100%)}.imghvr-slide-bottom-right figcaption{-webkit-transform:translate(100%,100%);transform:translate(100%,100%)}[class*=' imghvr-reveal-']:before,[class^=imghvr-reveal-]:before{position:absolute;top:0;bottom:0;left:0;right:0;content:'';background-color:#135796}[class*=' imghvr-reveal-'] figcaption,[class^=imghvr-reveal-] figcaption{opacity:0}[class*=' imghvr-reveal-']:hover:before,[class^=imghvr-reveal-]:hover:before{-webkit-transform:translate(0,0);transform:translate(0,0)}[class*=' imghvr-reveal-']:hover figcaption,[class^=imghvr-reveal-]:hover figcaption{opacity:1;-webkit-transition-delay:.21s;transition-delay:.21s}.imghvr-reveal-up:before{-webkit-transform:translateY(100%);transform:translateY(100%)}.imghvr-reveal-down:before{-webkit-transform:translateY(-100%);transform:translateY(-100%)}.imghvr-reveal-left:before{-webkit-transform:translateX(100%);transform:translateX(100%)}.imghvr-reveal-right:before{-webkit-transform:translateX(-100%);transform:translateX(-100%)}.imghvr-reveal-top-left:before{-webkit-transform:translate(-100%,-100%);transform:translate(-100%,-100%)}.imghvr-reveal-top-right:before{-webkit-transform:translate(100%,-100%);transform:translate(100%,-100%)}.imghvr-reveal-bottom-left:before{-webkit-transform:translate(-100%,100%);transform:translate(-100%,100%)}.imghvr-reveal-bottom-right:before{-webkit-transform:translate(100%,100%);transform:translate(100%,100%)}[class*=' imghvr-hinge-'],[class^=imghvr-hinge-]{-webkit-perspective:50em;perspective:50em}[class*=' imghvr-hinge-'] figcaption,[class^=imghvr-hinge-] figcaption{opacity:0;z-index:1}[class*=' imghvr-hinge-']:hover img,[class^=imghvr-hinge-]:hover img{opacity:0}[class*=' imghvr-hinge-']:hover figcaption,[class^=imghvr-hinge-]:hover figcaption{opacity:1;-webkit-transition-delay:.21s;transition-delay:.21s}.imghvr-hinge-up img{-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0}.imghvr-hinge-up figcaption{-webkit-transform:rotateX(90deg);transform:rotateX(90deg);-webkit-transform-origin:50% 100%;-ms-transform-origin:50% 100%;transform-origin:50% 100%}.imghvr-hinge-up:hover>img{-webkit-transform:rotateX(-90deg);transform:rotateX(-90deg)}.imghvr-hinge-up:hover figcaption{-webkit-transform:rotateX(0);transform:rotateX(0)}.imghvr-hinge-down img{-webkit-transform-origin:50% 100%;-ms-transform-origin:50% 100%;transform-origin:50% 100%}.imghvr-hinge-down figcaption{-webkit-transform:rotateX(-90deg);transform:rotateX(-90deg);-webkit-transform-origin:50% -50%;-ms-transform-origin:50% -50%;transform-origin:50% -50%}.imghvr-hinge-down:hover>img{-webkit-transform:rotateX(90deg);transform:rotateX(90deg);opacity:0}.imghvr-hinge-down:hover figcaption{-webkit-transform:rotateX(0);transform:rotateX(0)}.imghvr-hinge-left img{-webkit-transform-origin:0 50%;-ms-transform-origin:0 50%;transform-origin:0 50%}.imghvr-hinge-left figcaption{-webkit-transform:rotateY(-90deg);transform:rotateY(-90deg);-webkit-transform-origin:100% 50%;-ms-transform-origin:100% 50%;transform-origin:100% 50%}.imghvr-hinge-left:hover>img{-webkit-transform:rotateY(90deg);transform:rotateY(90deg)}.imghvr-hinge-left:hover figcaption{-webkit-transform:rotateY(0);transform:rotateY(0)}.imghvr-hinge-right img{-webkit-transform-origin:100% 50%;-ms-transform-origin:100% 50%;transform-origin:100% 50%}.imghvr-hinge-right figcaption{-webkit-transform:rotateY(90deg);transform:rotateY(90deg);-webkit-transform-origin:0 50%;-ms-transform-origin:0 50%;transform-origin:0 50%}.imghvr-hinge-right:hover>img{-webkit-transform:rotateY(-90deg);transform:rotateY(-90deg)}.imghvr-hinge-right:hover figcaption{-webkit-transform:rotateY(0);transform:rotateY(0)}[class*=' imghvr-flip-'],[class^=imghvr-flip-]{-webkit-perspective:50em;perspective:50em}[class*=' imghvr-flip-'] img,[class^=imghvr-flip-] img{backface-visibility:hidden}[class*=' imghvr-flip-'] figcaption,[class*=' imghvr-flip-']:hover>img,[class^=imghvr-flip-] figcaption,[class^=imghvr-flip-]:hover>img{opacity:0}[class*=' imghvr-flip-']:hover figcaption,[class^=imghvr-flip-]:hover figcaption{opacity:1;-webkit-transition-delay:.13999999999999999s;transition-delay:.13999999999999999s}.imghvr-flip-horiz figcaption{-webkit-transform:rotateX(90deg);transform:rotateX(90deg);-webkit-transform-origin:0 50%;-ms-transform-origin:0 50%;transform-origin:0 50%}.imghvr-flip-horiz:hover img{-webkit-transform:rotateX(-180deg);transform:rotateX(-180deg)}.imghvr-flip-horiz:hover figcaption{-webkit-transform:rotateX(0);transform:rotateX(0)}.imghvr-flip-vert figcaption{-webkit-transform:rotateY(90deg);transform:rotateY(90deg);-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0}.imghvr-flip-vert:hover>img{-webkit-transform:rotateY(-180deg);transform:rotateY(-180deg)}.imghvr-flip-vert:hover figcaption{-webkit-transform:rotateY(0);transform:rotateY(0)}.imghvr-flip-diag-1 figcaption{-webkit-transform:rotate3d(1,-1,0,100deg);transform:rotate3d(1,-1,0,100deg)}.imghvr-flip-diag-1:hover>img{-webkit-transform:rotate3d(-1,1,0,100deg);transform:rotate3d(-1,1,0,100deg)}.imghvr-flip-diag-1:hover figcaption{-webkit-transform:rotate3d(0,0,0,0deg);transform:rotate3d(0,0,0,0deg)}.imghvr-flip-diag-2 figcaption{-webkit-transform:rotate3d(1,1,0,100deg);transform:rotate3d(1,1,0,100deg)}.imghvr-flip-diag-2:hover>img{-webkit-transform:rotate3d(-1,-1,0,100deg);transform:rotate3d(-1,-1,0,100deg)}.imghvr-flip-diag-2:hover figcaption{-webkit-transform:rotate3d(0,0,0,0deg);transform:rotate3d(0,0,0,0deg)}[class*=' imghvr-shutter-out-']:before,[class^=imghvr-shutter-out-]:before{background:#135796;position:absolute;content:'';-webkit-transition-delay:105ms;transition-delay:105ms}[class*=' imghvr-shutter-out-'] figcaption,[class^=imghvr-shutter-out-] figcaption{opacity:0;-webkit-transition-delay:0s;transition-delay:0s}[class*=' imghvr-shutter-out-']:hover:before,[class^=imghvr-shutter-out-]:hover:before{-webkit-transition-delay:0s;transition-delay:0s}[class*=' imghvr-shutter-out-']:hover figcaption,[class^=imghvr-shutter-out-]:hover figcaption{opacity:1;-webkit-transition-delay:105ms;transition-delay:105ms}.imghvr-shutter-out-horiz:before{left:50%;right:50%;top:0;bottom:0}.imghvr-shutter-out-horiz:hover:before{left:0;right:0}.imghvr-shutter-out-vert:before{top:50%;bottom:50%;left:0;right:0}.imghvr-shutter-out-vert:hover:before{top:0;bottom:0}.imghvr-shutter-out-diag-1:before{top:50%;bottom:50%;left:-35%;right:-35%;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.imghvr-shutter-out-diag-1:hover:before{top:-35%;bottom:-35%}.imghvr-shutter-out-diag-2:before{top:50%;bottom:50%;left:-35%;right:-35%;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.imghvr-shutter-out-diag-2:hover:before{top:-35%;bottom:-35%}[class*=' imghvr-shutter-in-']:after,[class*=' imghvr-shutter-in-']:before,[class^=imghvr-shutter-in-]:after,[class^=imghvr-shutter-in-]:before{background:#135796;position:absolute;content:''}[class*=' imghvr-shutter-in-']:after,[class^=imghvr-shutter-in-]:after{top:0;left:0}[class*=' imghvr-shutter-in-']:before,[class^=imghvr-shutter-in-]:before{right:0;bottom:0}[class*=' imghvr-shutter-in-'] figcaption,[class^=imghvr-shutter-in-] figcaption{opacity:0;z-index:1}[class*=' imghvr-shutter-in-']:hover figcaption,[class^=imghvr-shutter-in-]:hover figcaption{opacity:1;-webkit-transition-delay:.21s;transition-delay:.21s}.imghvr-shutter-in-horiz:after,.imghvr-shutter-in-horiz:before{width:0;height:100%}.imghvr-shutter-in-horiz:hover:after,.imghvr-shutter-in-horiz:hover:before{width:50%}.imghvr-shutter-in-vert:after,.imghvr-shutter-in-vert:before{height:0;width:100%}.imghvr-shutter-in-vert:hover:after,.imghvr-shutter-in-vert:hover:before{height:50%}.imghvr-shutter-in-out-horiz:after,.imghvr-shutter-in-out-horiz:before{width:0;height:100%}.imghvr-shutter-in-out-horiz:hover:after,.imghvr-shutter-in-out-horiz:hover:before{width:100%;opacity:.75}.imghvr-shutter-in-out-vert:after,.imghvr-shutter-in-out-vert:before{height:0;width:100%}.imghvr-shutter-in-out-vert:hover:after,.imghvr-shutter-in-out-vert:hover:before{height:100%;opacity:.75}.imghvr-shutter-in-out-diag-1:after,.imghvr-shutter-in-out-diag-1:before{width:200%;height:200%;-webkit-transition:all .6s ease;transition:all .6s ease;opacity:.75}.imghvr-shutter-in-out-diag-1:after{-webkit-transform:skew(-45deg) translateX(-150%);transform:skew(-45deg) translateX(-150%)}.imghvr-shutter-in-out-diag-1:before{-webkit-transform:skew(-45deg) translateX(150%);transform:skew(-45deg) translateX(150%)}.imghvr-shutter-in-out-diag-1:hover:after{-webkit-transform:skew(-45deg) translateX(-50%);transform:skew(-45deg) translateX(-50%)}.imghvr-shutter-in-out-diag-1:hover:before{-webkit-transform:skew(-45deg) translateX(50%);transform:skew(-45deg) translateX(50%)}.imghvr-shutter-in-out-diag-2:after,.imghvr-shutter-in-out-diag-2:before{width:200%;height:200%;-webkit-transition:all .6s ease;transition:all .6s ease;opacity:.75}.imghvr-shutter-in-out-diag-2:after{-webkit-transform:skew(45deg) translateX(-100%);transform:skew(45deg) translateX(-100%)}.imghvr-shutter-in-out-diag-2:before{-webkit-transform:skew(45deg) translateX(100%);transform:skew(45deg) translateX(100%)}.imghvr-shutter-in-out-diag-2:hover:after,.imghvr-shutter-in-out-diag-2:hover:before{-webkit-transform:skew(45deg) translateX(0);transform:skew(45deg) translateX(0)}[class*=' imghvr-fold'],[class^=imghvr-fold]{-webkit-perspective:50em;perspective:50em}[class*=' imghvr-fold'] img,[class^=imghvr-fold] img{-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0}[class*=' imghvr-fold'] figcaption,[class^=imghvr-fold] figcaption{z-index:1;opacity:0}[class*=' imghvr-fold']:hover>img,[class^=imghvr-fold]:hover>img{opacity:0;-webkit-transition-delay:0;transition-delay:0}[class*=' imghvr-fold']:hover figcaption,[class^=imghvr-fold]:hover figcaption{-webkit-transform:rotateX(0) translate3d(0,0,0) scale(1);transform:rotateX(0) translate3d(0,0,0) scale(1);opacity:1;-webkit-transition-delay:.21s;transition-delay:.21s}.imghvr-fold-up>img{-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0}.imghvr-fold-up figcaption{-webkit-transform:rotateX(-90deg) translate3d(0,-50%,0) scale(.6);transform:rotateX(-90deg) translate3d(0,-50%,0) scale(.6);-webkit-transform-origin:50% 100%;-ms-transform-origin:50% 100%;transform-origin:50% 100%}.imghvr-fold-up:hover>img{-webkit-transform:rotateX(90deg) scale(.6) translateY(50%);transform:rotateX(90deg) scale(.6) translateY(50%)}.imghvr-fold-down>img{-webkit-transform-origin:50% 100%;-ms-transform-origin:50% 100%;transform-origin:50% 100%}.imghvr-fold-down figcaption{-webkit-transform:rotateX(90deg) translate3d(0,50%,0) scale(.6);transform:rotateX(90deg) translate3d(0,50%,0) scale(.6);-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0}.imghvr-fold-down:hover>img{-webkit-transform:rotateX(-90deg) scale(.6) translateY(-50%);transform:rotateX(-90deg) scale(.6) translateY(-50%)}.imghvr-fold-left>img{-webkit-transform-origin:0 50%;-ms-transform-origin:0 50%;transform-origin:0 50%}.imghvr-fold-left figcaption{-webkit-transform:rotateY(90deg) translate3d(-50%,0,0) scale(.6);transform:rotateY(90deg) translate3d(-50%,0,0) scale(.6);-webkit-transform-origin:100% 50%;-ms-transform-origin:100% 50%;transform-origin:100% 50%}.imghvr-fold-left:hover>img{-webkit-transform:rotateY(-90deg) scale(.6) translateX(50%);transform:rotateY(-90deg) scale(.6) translateX(50%)}.imghvr-fold-right{-webkit-perspective:50em;perspective:50em}.imghvr-fold-right>img{-webkit-transform-origin:100% 50%;-ms-transform-origin:100% 50%;transform-origin:100% 50%}.imghvr-fold-right figcaption{-webkit-transform:rotateY(-90deg) translate3d(50%,0,0) scale(.6);transform:rotateY(-90deg) translate3d(50%,0,0) scale(.6);-webkit-transform-origin:0 50%;-ms-transform-origin:0 50%;transform-origin:0 50%}.imghvr-fold-right:hover>img{-webkit-transform:rotateY(90deg) scale(.6) translateX(-50%);transform:rotateY(90deg) scale(.6) translateX(-50%)}.imghvr-zoom-in figcaption{opacity:0;-webkit-transform:scale(.5);transform:scale(.5)}.imghvr-zoom-in:hover figcaption{-webkit-transform:scale(1);transform:scale(1);opacity:1}[class*=' imghvr-zoom-out'] figcaption,[class^=imghvr-zoom-out] figcaption{-webkit-transform:scale(.5);transform:scale(.5);-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%;opacity:0}[class*=' imghvr-zoom-out'].hover figcaption,[class*=' imghvr-zoom-out']:hover figcaption,[class^=imghvr-zoom-out].hover figcaption,[class^=imghvr-zoom-out]:hover figcaption{-webkit-transform:scale(1);transform:scale(1);opacity:1;-webkit-transition-delay:.35s;transition-delay:.35s}.imghvr-zoom-out:hover>img{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}.imghvr-zoom-out-up.hover>img,.imghvr-zoom-out-up:hover>img{-webkit-animation:imghvr-zoom-out-up .40249999999999997s linear;animation:imghvr-zoom-out-up .40249999999999997s linear;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}@-webkit-keyframes imghvr-zoom-out-up{50%{-webkit-transform:scale(.8) translateY(0);transform:scale(.8) translateY(0);opacity:.5}100%{-webkit-transform:scale(.8) translateY(-150%);transform:scale(.8) translateY(-150%);opacity:.5}}@keyframes imghvr-zoom-out-up{50%{-webkit-transform:scale(.8) translateY(0);transform:scale(.8) translateY(0);opacity:.5}100%{-webkit-transform:scale(.8) translateY(-150%);transform:scale(.8) translateY(-150%);opacity:.5}}.imghvr-zoom-out-down.hover>img,.imghvr-zoom-out-down:hover>img{-webkit-animation:imghvr-zoom-out-down .40249999999999997s linear;animation:imghvr-zoom-out-down .40249999999999997s linear;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}@-webkit-keyframes imghvr-zoom-out-down{50%{-webkit-transform:scale(.8) translateY(0);transform:scale(.8) translateY(0);opacity:.5}100%{-webkit-transform:scale(.8) translateY(150%);transform:scale(.8) translateY(150%);opacity:.5}}@keyframes imghvr-zoom-out-down{50%{-webkit-transform:scale(.8) translateY(0);transform:scale(.8) translateY(0);opacity:.5}100%{-webkit-transform:scale(.8) translateY(150%);transform:scale(.8) translateY(150%);opacity:.5}}.imghvr-zoom-out-left.hover>img,.imghvr-zoom-out-left:hover>img{-webkit-animation:imghvr-zoom-out-left .40249999999999997s linear;animation:imghvr-zoom-out-left .40249999999999997s linear;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}@-webkit-keyframes imghvr-zoom-out-left{50%{-webkit-transform:scale(.8) translateX(0);transform:scale(.8) translateX(0);opacity:.5}100%{-webkit-transform:scale(.8) translateX(-150%);transform:scale(.8) translateX(-150%);opacity:.5}}@keyframes imghvr-zoom-out-left{50%{-webkit-transform:scale(.8) translateX(0);transform:scale(.8) translateX(0);opacity:.5}100%{-webkit-transform:scale(.8) translateX(-150%);transform:scale(.8) translateX(-150%);opacity:.5}}.imghvr-zoom-out-right.hover>img,.imghvr-zoom-out-right:hover>img{-webkit-animation:imghvr-zoom-out-right .40249999999999997s linear;animation:imghvr-zoom-out-right .40249999999999997s linear;-webkit-animation-iteration-count:1;animation-iteration-count:1;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}@-webkit-keyframes imghvr-zoom-out-right{50%{-webkit-transform:scale(.8) translateX(0);transform:scale(.8) translateX(0);opacity:.5}100%{-webkit-transform:scale(.8) translateX(150%);transform:scale(.8) translateX(150%);opacity:.5}}@keyframes imghvr-zoom-out-right{50%{-webkit-transform:scale(.8) translateX(0);transform:scale(.8) translateX(0);opacity:.5}100%{-webkit-transform:scale(.8) translateX(150%);transform:scale(.8) translateX(150%);opacity:.5}}.imghvr-zoom-out-flip-horiz{-webkit-perspective:50em;perspective:50em}.imghvr-zoom-out-flip-horiz figcaption{opacity:0;-webkit-transform:rotateX(90deg) translateY(-100%) scale(.5);transform:rotateX(90deg) translateY(-100%) scale(.5)}.imghvr-zoom-out-flip-horiz.hover>img,.imghvr-zoom-out-flip-horiz:hover>img{-webkit-transform:rotateX(-100deg) translateY(50%) scale(.5);transform:rotateX(-100deg) translateY(50%) scale(.5);opacity:0;-webkit-transition-delay:0;transition-delay:0}.imghvr-zoom-out-flip-horiz.hover figcaption,.imghvr-zoom-out-flip-horiz:hover figcaption{-webkit-transform:rotateX(0) translateY(0) scale(1);transform:rotateX(0) translateY(0) scale(1);opacity:1;-webkit-transition-delay:.35s;transition-delay:.35s}.imghvr-zoom-out-flip-vert{-webkit-perspective:50em;perspective:50em}.imghvr-zoom-out-flip-vert figcaption{opacity:0;-webkit-transform:rotateY(90deg) translate(50%,0) scale(.5);transform:rotateY(90deg) translate(50%,0) scale(.5)}.imghvr-zoom-out-flip-vert.hover>img,.imghvr-zoom-out-flip-vert:hover>img{-webkit-transform:rotateY(-100deg) translateX(50%) scale(.5);transform:rotateY(-100deg) translateX(50%) scale(.5);opacity:0;-webkit-transition-delay:0;transition-delay:0}.imghvr-zoom-out-flip-vert.hover figcaption,.imghvr-zoom-out-flip-vert:hover figcaption{-webkit-transform:rotateY(0) translate(0,0) scale(1);transform:rotateY(0) translate(0,0) scale(1);opacity:1;-webkit-transition-delay:.35s;transition-delay:.35s}.imghvr-blur figcaption{opacity:0}.imghvr-blur:hover>img{-webkit-filter:blur(30px);filter:blur(30px);-webkit-transform:scale(1.2);transform:scale(1.2);opacity:0}.imghvr-blur:hover figcaption{opacity:1;-webkit-transition-delay:.21s;transition-delay:.21s}
--------------------------------------------------------------------------------
/css/style.css:
--------------------------------------------------------------------------------
1 | /*
2 | Theme Name: Mentor
3 | Theme URL: https://bootstrapmade.com/mentor-free-education-bootstrap-theme/
4 | Author: BootstrapMade.com
5 | Author URL: https://bootstrapmade.com
6 | */
7 |
8 | body {
9 | font-size: 15px;
10 | line-height: 1.52;
11 | color: #717f86;
12 | font-size: 16px;
13 | font-family: 'Open Sans', sans-serif;
14 | font-weight: 400;
15 | }
16 | ol, ul {
17 | list-style: none;
18 | }
19 | blockquote, q {
20 | quotes: none;
21 | }
22 | blockquote:before, blockquote:after,
23 | q:before, q:after {
24 | content: '';
25 | content: none;
26 | }
27 | table {
28 | border-collapse: collapse;
29 | border-spacing: 0;
30 | }
31 | .section-padding{
32 | padding: 60px 0px;
33 | }
34 | h1, h2, h3, h4, h5, h6{
35 | font-family: Open Sans, sans-serif;
36 | font-weight: 700;
37 | color: #4B4B4C;
38 | }
39 | a{
40 | color: #5fcf80;
41 | }
42 | a:hover, a:focus{
43 | color: #5fcf80;
44 | }
45 | /***********************************
46 | Navigation bar
47 | ************************************/
48 | .navbar-default .navbar-brand {
49 | color: #5FCF80;
50 | }
51 | .navbar-default {
52 | background-color: #ffffff;
53 | }
54 | .course-text{
55 | padding: 84px;
56 | }
57 | .navbar-default .navbar-nav > li > a {
58 | color: #717f86;
59 | font-size: 14px;
60 | font-weight: 700;
61 | }
62 | .navbar-nav > li > a{
63 | padding: 0px;
64 | margin: 10px 5px;
65 | padding: 10px 15px;
66 | }
67 | .navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:hover
68 | {
69 | color: #5FCF80;
70 | }
71 |
72 | .navbar-nav .active a{
73 | background: none !important;
74 | color: #5FCF80 !important;
75 | outline: none;
76 | }
77 |
78 | .btn-trial a{
79 | background-color: #5FCF80;
80 | border-radius: 25px;
81 | color: #ffffff !important;
82 | border: 1px solid #5FCF80;
83 | }
84 | .btn-trial a:hover, .btn-trial a:focus{
85 | border: 1px solid #5FCF80;
86 | background-color: #fff;
87 | color: #5FCF80 !important;
88 | }
89 | .navbar-default .navbar-brand {
90 | font-family: 'Dosis', sans-serif !important;
91 | font-weight: 700;
92 | text-transform: uppercase;
93 | padding: 0px;
94 | height: inherit;
95 | font-size: 36px;
96 | margin: 20px 0px;
97 | }
98 | .navbar-default .navbar-brand span{
99 | font-weight: 100 !important;
100 | }
101 | .navbar {
102 | margin-bottom: 0px;
103 | }
104 | .padding-zero{
105 | padding: 0px;
106 | }
107 | .mart20{
108 | margin-top: 20px;
109 | }
110 | /***********************************
111 | Banner
112 | ************************************/
113 | .banner{
114 | background: url('../img/bg-banner.jpg') no-repeat center top;
115 | background-size: cover;
116 | min-height: 580px;
117 | position: relative;
118 | }
119 | .bg-color{
120 | background-color: RGBA(12, 11, 11, 0.82);
121 | min-height: 580px;
122 | }
123 | .text-dec{
124 | font-size: 24px;
125 | padding: 10px 20px;
126 | margin: 15px 0;
127 | text-transform: uppercase;
128 | color: #fff;
129 | }
130 | .text-border{
131 | border: 5px solid #5FCF80;
132 | display: inline-block;
133 | margin-top: 150px;
134 | }
135 | .intro-para{
136 | font-family: 'Alegreya Sans', sans-serif;
137 | font-size: 45px;
138 | color: #fff;
139 | margin-top: 30px;
140 | }
141 | .quote .btn{
142 | background-color:
143 | }
144 | .modal-dialog {
145 | width: 600px;
146 | margin: 150px auto;
147 | }
148 | .mouse {
149 | width: 25px;
150 | height: 45px;
151 | border: 2px solid #fff;
152 | position: absolute;
153 | bottom: 40px;
154 | left: 50%;
155 | margin-left: -12.5px;
156 | border-radius: 12px;
157 | }
158 | @-webkit-keyframes rotateplane {
159 | 0% {top:10px;}
160 | 25% {top:14px;}
161 | 50% {top:19px;}
162 | 75% {top:24px;}
163 | 100% {top:28px;}
164 | }
165 | @-moz-keyframes rotateplane {
166 | 0% {top:10px;}
167 | 25% {top:14px;}
168 | 50% {top:19px;}
169 | 75% {top:24px;}
170 | 100% {top:28px;}
171 | }
172 | @-o-keyframes rotateplane {
173 | 0% {top:10px;}
174 | 25% {top:14px;}
175 | 50% {top:19px;}
176 | 75% {top:24px;}
177 | 100% {top:28px;}
178 | }
179 | .mouse::after {
180 | content: "";
181 | position: absolute;
182 | height: 5px;
183 | width: 5px;
184 | background-color: #fff;
185 | border-radius: 100%;
186 | left: 50%;
187 | top:10px;
188 | margin-left: -2.5px;
189 | transition:all 0.3s ease-in;
190 |
191 | -webkit-animation-name: rotateplane; /* Chrome, Safari, Opera */
192 | -webkit-animation-duration: 2s; /* Chrome, Safari, Opera */
193 | animation-name: rotateplane;
194 | animation-duration: 2s;
195 | animation-iteration-count: infinite;
196 | }
197 | .modal-content h4 {
198 | font-size: 1.5em;
199 | font-weight: 700;
200 | }
201 | .login-box-body {
202 | padding: 15px 30px;
203 | }
204 | .login-box-msg, .register-box-msg {
205 | margin: 0px;
206 | text-align: center;
207 | padding: 0px 20px 20px;
208 | }
209 | .modal-sm {
210 | width: 400px;
211 | }
212 | .padleft-right{
213 | padding-left: 5px;
214 | padding-right: 0px;
215 | }
216 | .big-text{
217 | font-size: 35px;
218 | }
219 | .small-text{
220 | font-size: 16px;
221 | }
222 | .quote .btn{
223 | background-color: #5fcf80;
224 | color: #fff;
225 | -webkit-transition: all 0.3s ease-in-out;
226 | -moz-transition: all 0.3s ease-in-out;
227 | transition: all 0.3s ease-in-out;
228 | margin-top: 10px;
229 | }
230 | .quote .btn:hover, .quote .btn:focus{
231 | background-color: #fff;
232 | color: #5fcf80;
233 | border-color: #fff;
234 | -webkit-transition: all 0.3s ease-in-out;
235 | -moz-transition: all 0.3s ease-in-out;
236 | transition: all 0.3s ease-in-out;
237 | }
238 | /***********************************
239 | Features
240 | ************************************/
241 | h2{
242 | font-size: 24px;
243 | padding-bottom: 15px;
244 | }
245 | .bottom-line{
246 | width: 25px;
247 | height: 3px;
248 | background-color: rgb(99, 122, 145);
249 | }
250 | .fea{
251 | margin-top: 25px;
252 | }
253 | .fea-img {
254 | width: 20%;
255 | }
256 | .heading {
257 | width: 80%;
258 | }
259 | .fea i {
260 | font-size: 39px;
261 | color: #5FCF80;
262 | margin-top: 7px;
263 | }
264 | .heading h4 {
265 | font-size: 17px;
266 | line-height: 1.25;
267 | font-weight: 700;
268 | color: #000;
269 | margin: 10px 0px;
270 | text-align: left;
271 | }
272 | .heading p {
273 | text-align: left;
274 | }
275 | /***********************************
276 | Organisations
277 | ************************************/
278 | #organisations{
279 | background-color: rgb(247, 247, 247);
280 | }
281 | .orga-stru
282 | {
283 | background-color: #5FCF80;
284 | width: 109px;
285 | height: auto;
286 | padding: 10px 10px 25px 10px;
287 | text-align: center;
288 | border-radius: 0px 80px 99px 99px;
289 | -moz-border-radius: 0px 80px 99px 99px;
290 | -webkit-border-radius: 0px 80px 99px 99px;
291 | -o-border-radius: 0px 80px 99px 99px;
292 | }
293 | .orga-stru h3 {
294 | font-size: 36px;
295 | color: white;
296 | font-weight: bold;
297 | }
298 | .orga-stru p {
299 | font-size: 14px;
300 | color: white;
301 | font-weight: normal;
302 | line-height: 20px;
303 | padding-top: 15px;
304 | }
305 | .orga-stru i
306 | {
307 | font-size: 150px;
308 | margin-top: 35px;
309 | color: rgb(255, 255, 255);
310 | }
311 | h3.det-txt {
312 | font-size: 40px;
313 | font-weight: bold;
314 | text-transform: uppercase;
315 | }
316 | h4.sm-txt {
317 | color: #5FCF80;
318 | font-size: 24px;
319 | }
320 | p.det-p {
321 | padding: 40px 0px;
322 | }
323 | #pricing{
324 | background: rgb(247, 247, 247);
325 | }
326 | /***********************************
327 | Cta
328 | ************************************/
329 | #cta-2{
330 | padding: 140px 0;
331 | }
332 | .cta-2-txt {
333 | font-size: 24px;
334 | padding-bottom: 15px;
335 | text-align: center;
336 | margin: 0 auto;
337 | line-height: 34px !important;
338 | }
339 | .cta-2-form input[type="email"] {
340 | border: 0px solid #CCC;
341 | padding: 13px 40px;
342 | font-size: 18px;
343 | color: #2b5d83;
344 | font-weight: 100;
345 | min-width: 280px;
346 | margin-left: -4px;
347 | margin-bottom: 2px;
348 | border: 1px solid #5fcf80;
349 | background-color: rgb(247, 247, 247);
350 | border-radius: 30px 0px 0px 30px;
351 | }
352 | .cta-2-form-submit-btn {
353 | font-size: 18px;
354 | text-transform: capitalize;
355 | color: #fff;
356 | background-color: #5fcf80;
357 | border: 2px solid #fff;
358 | padding: 14px 30px;
359 | margin-left: -4px;
360 | transition: all 0.3s;
361 | -moz-transition: all 0.3s;
362 | -webkit-transition: all 0.3s;
363 | -o-transition: all 0.3s;
364 | border-width: 1px 1px 1px 0px;
365 | border-radius: 0px 30px 30px 0px;
366 | }
367 | /***********************************
368 | Work Shop
369 | ************************************/
370 | #work-shop {
371 | background-color: rgb(247, 247, 247);
372 | }
373 | .service-box{
374 | background: #fff;
375 | padding: 60px 30px 80px;
376 | box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.1);
377 | }
378 | .icon-box i {
379 | color: #5FCF80;
380 | font-size: 65px;
381 | }
382 | .ser-text {
383 | font-size: 24px;
384 | }
385 | .icon-box, .icon-text {
386 | padding: 20px 0px 0px;
387 | }
388 | /***********************************
389 | Mentor Team
390 | ************************************/
391 | .pm-staff-profile-image{
392 | width: 150px;
393 | height: 150px;
394 | background-color: #C6C6C6;
395 | border-radius: 50%;
396 | display: inline-block;
397 | }
398 | .pm-staff-profile-details {
399 | padding: 20px 20px;
400 | }
401 | .pm-staff-profile-name {
402 | font-size: 24px;
403 | text-transform: capitalize;
404 | color: #2b5d83;
405 | }
406 | .pm-staff-profile-title {
407 | text-transform: capitalize;
408 | color: #4b4b4b;
409 | font-weight: 500;
410 | padding: 12px 0px;
411 | }
412 | .pm-staff-profile-bio {
413 | text-transform: capitalize;
414 | color: #4b4b4b;
415 | font-weight: 100;
416 | }
417 | /***********************************
418 | Testimonial
419 | ************************************/
420 | #testimonial{
421 | background-color: #111;
422 | }
423 | .bg-white{
424 | background-color: #fff !important;
425 | }
426 | .text-comment{
427 | background-color: rgb(255, 255, 255);
428 | padding: 20px;
429 | }
430 | .text-par{
431 | font-size: 20px;
432 | padding-bottom: 15px;
433 | }
434 | /***********************************
435 | Course
436 | ************************************/
437 | [class*=" imghvr-"] figcaption, [class^="imghvr-"] figcaption {
438 | background-color: #5FCF80;
439 | }
440 | [class*=" imghvr-"], [class^="imghvr-"] {
441 | background-color: #5FCF80;
442 | color: #fff;
443 | }
444 | /***********************************
445 | Price Table
446 | ************************************/
447 | .price-table {
448 | box-shadow: 0px 0px 1px 0px RGBA(0, 0, 0, 0.4);
449 | position: relative;
450 | }
451 | .price-table .pricing-head {
452 | background: #fff;
453 | padding: 40px;
454 | text-align: center;
455 | }
456 | .price-table .pricing-head h4 {
457 | font-size: 22px;
458 | color: #232c3b;
459 | margin-top: 0px;
460 | letter-spacing: 1px;
461 | border-bottom: 1px solid #232c3b;
462 | padding-bottom: 20px;
463 | }
464 | .pricing-head .amount {
465 | font-size: 60px;
466 | font-weight: bold;
467 | }
468 | .pricing-head .curency {
469 | display: inline-block;
470 | position: relative;
471 | top: -30px;
472 | font-size: 20px;
473 | }
474 | .price-in {
475 | background: #fff;
476 | text-align: center;
477 | }
478 | .btn-bg {
479 | border: 0px;
480 | border-radius: 0px;
481 | color: #fff !important;
482 | padding: 20px 0px;
483 | font-weight: bold !important;
484 | font-size: 14px;
485 | background-color: #5fcf80;
486 | }
487 | /***********************************
488 | Contact Us
489 | ************************************/
490 | .contact form .form {
491 | width: 100%;
492 | height: auto;
493 | padding: 15px 15px 12px;
494 | font-size: 18px;
495 | margin-bottom: 18px;
496 | color: #7f7f7f;
497 | letter-spacing: 0.5px;
498 | }
499 | #contact .form-control {
500 | background: #fafafa;
501 | border: 1px solid rgba(119, 81, 81, 0.34);
502 | width: 100%;
503 | margin-bottom: 15px;
504 | border-radius: 0;
505 |
506 | }
507 | .textarea {
508 | height: 228px;
509 | max-width: 100%;
510 | max-height: 229px;
511 | }
512 | .light {
513 | font-weight: 100;
514 | }
515 | .white{
516 | color: #fff !important;
517 | }
518 |
519 | .validation {
520 | color: red;
521 | display:none;
522 | margin: 0 0 20px;
523 | font-weight:400;
524 | font-size:13px;
525 | }
526 |
527 | #sendmessage {
528 | color: green;
529 | border:1px solid green;
530 | display:none;
531 | text-align:center;
532 | padding:15px;
533 | font-weight:600;
534 | margin-bottom:15px;
535 | }
536 |
537 | #errormessage {
538 | color: red;
539 | display:none;
540 | border:1px solid red;
541 | text-align:center;
542 | padding:15px;
543 | font-weight:600;
544 | margin-bottom:15px;
545 | }
546 |
547 | #sendmessage.show, #errormessage.show, .show {
548 | display:block;
549 | }
550 | /***********************************
551 | Footer
552 | ************************************/
553 | .footer {
554 | padding: 60px 0 20px;
555 | background: #111;
556 | color: #ccc;
557 | }
558 | .footer a {
559 | color: #fff;
560 | }
561 |
562 | .footer h3{
563 | font-weight: 300;
564 | letter-spacing: 0.05em;
565 | margin: 0 0 40px;
566 | font-size: 24px;
567 | }
568 | .footer .form-control {
569 | border-radius: 30px;
570 | border: none;
571 | background: rgba(255,255,255,.1);
572 | padding-left: 30px;
573 | color: #e5e6e7;
574 | margin-bottom: 0;
575 | height: 48px;
576 | }
577 | .footer .social-links li a {
578 | color: #fff;
579 | font-size: 32px;
580 | line-height: 50px;
581 | border-radius: 50%;
582 | text-align: center;
583 | -webkit-transition: all .3s ease-out;
584 | transition: all .3s ease-out;
585 | }
586 | .footer .social-links li {
587 | display: inline-block;
588 | margin: 0 25px 25px;
589 | -webkit-transition: all .3s ease-out;
590 | transition: all .3s ease-out;
591 | }
592 | .footer .mc-trial {
593 | margin: 20px 0;
594 | }
595 | .footer .social-links {
596 | list-style: none;
597 | padding: 0;
598 | margin: 30px 0 40px;
599 | padding: 40px 0 0;
600 | border-bottom: 1px solid rgba(255,255,255,0.2);
601 | }
602 | .btn-submit:hover, .btn-submit:focus{
603 | background-color: #5fcf80;
604 | color: #fff;
605 | }
606 | .btn-submit{
607 | padding: 14px 12px;
608 | border-radius: 50px;
609 | text-transform: uppercase;
610 | background-color: #5fcf80;
611 | color: #fff;
612 | }
613 | .btn-submit i{
614 | padding-left: 8px;
615 | }
616 |
617 | .btn-sec {
618 | margin-top: 20px;
619 | }
620 | .ser-btn {
621 | padding: 10px 18px;
622 | border: 0px;
623 | background-color: #222935;
624 | color: #fff;
625 | border-radius: 3px;
626 | display: inline-block;
627 | margin-bottom: 20px;
628 | }
629 | .mem-info{
630 | padding: 45px 10px 0px;
631 | background-color: #eee;
632 | }
633 | .mem-info h4 {
634 | font-size: 18px;
635 | padding: 10px 0px;
636 | }
637 | .mem-info h3{
638 | font-size: 24px;
639 | padding: 15px 0px;
640 | }
641 | .mem-info h5
642 | {
643 | margin-top: 10px;
644 | margin-bottom: 10px;
645 | }
646 | .mem-info p {
647 | margin: 0 0 10px;
648 | }
649 | .agent-social li {
650 | display: inline-block;
651 | padding: 0px 10px 0px 0px;
652 | margin-bottom: 10px;
653 | }
654 | .btn {
655 | padding: 10px 20px;
656 | }
657 | .light-form-button{
658 | background: #5fcf80;
659 | border: 1px solid rgba(119, 81, 81, 0.34);
660 | width: 24%;
661 | padding: 10px 10px;
662 | margin-bottom: 15px;
663 | color: #fff;: #fafafa;
664 | border: 1px solid rgba(119, 81, 81, 0.34);
665 | width: 24%;
666 | margin-bottom: 15px;
667 | -webkit-transition: all 0.3s ease-in-out;
668 | -moz-transition: all 0.3s ease-in-out;
669 | transition: all 0.3s ease-in-out;
670 | }
671 | .btn-green, .btn-green:hover{
672 | background-color: #5fcf80;
673 | color: #fff;
674 | }
675 | .footer .form-control:focus{
676 | box-shadow: none;
677 | }
678 | /***********************************
679 | ************************************
680 | Responsive media queries
681 | ************************************
682 | ***********************************/
683 | @media (min-width: 769px) and (max-width: 980px) {
684 | .ser-text {
685 | font-size: 20px;
686 | }
687 | .service-box, .feature-info, .orga-stru{
688 | margin-bottom: 30px;
689 | }
690 | .pricing-head .amount {
691 | font-size: 51px;
692 | }
693 | .price-table .pricing-head h4 {
694 | font-size: 18px;
695 | }
696 | }
697 | @media (min-width: 451px) and (max-width: 768px) {
698 | .ser-text {
699 | font-size: 20px;
700 | }
701 | .service-box, .feature-info{
702 | margin-bottom: 30px;
703 | }
704 |
705 | .pricing-head .amount {
706 | font-size: 51px;
707 | }
708 | .price-table .pricing-head h4 {
709 | font-size: 18px;
710 | }
711 | }
712 | @media (min-width: 20px) and (max-width: 450px) {
713 | .text-dec {
714 | font-size: 20px;
715 | }
716 | .big-text {
717 | font-size: 30px;
718 | }
719 | .small-text {
720 | font-size: 14px;
721 | }
722 | .intro-para {
723 | font-size: 30px;
724 | }
725 | .header-section p{
726 | font-size: 14px;
727 | }
728 | .heading {
729 | margin-bottom: 20px;
730 | }
731 | .orga-stru i {
732 | font-size: 92px;
733 | }
734 | .orga-stru {
735 | padding: 5px 5px 15px 5px;
736 | width: 75px;
737 | margin-bottom: 20px;
738 | }
739 | .orga-stru h3 {
740 | font-size: 28px;
741 | }
742 | .orga-stru p {
743 | font-size: 13px;
744 | }
745 | h3.det-txt {
746 | font-size: 28px;
747 | }
748 | .cta-2-txt {
749 | font-size: 20px;
750 | }
751 | .service-box, .text-comment, .price-table{
752 | margin-bottom: 30px;
753 | }
754 | .contact-form-button{
755 | width: 40%;
756 | }
757 | .footer .social-links li {
758 | margin: 0 5px 25px;
759 | }
760 | .cta-2-form-submit-btn {
761 | font-size: 10px;
762 | }
763 | .cta-2-form input[type="email"] {
764 | padding: 13px 10px;
765 | font-size: 10px;
766 | min-width: 187px;
767 | }
768 | .modal-sm {
769 | width: 300px;
770 | }
771 | .login-box-body {
772 | padding: 15px 20px;
773 | }
774 | .navbar-default .navbar-brand{
775 | margin-left: 10px;
776 | }
777 | .navbar-default .navbar-nav > li > a{
778 | text-align: center;
779 | }
780 | }
781 |
--------------------------------------------------------------------------------
/deafaultuser.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/deafaultuser.jpg
--------------------------------------------------------------------------------
/defaultuser.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/defaultuser.jpg
--------------------------------------------------------------------------------
/deletechat.php:
--------------------------------------------------------------------------------
1 |
11 |
35 |
36 |
37 |
38 |
39 |
--------------------------------------------------------------------------------
/expdb.sql:
--------------------------------------------------------------------------------
1 | -- phpMyAdmin SQL Dump
2 | -- version 4.8.3
3 | -- https://www.phpmyadmin.net/
4 | --
5 | -- Host: 127.0.0.1
6 | -- Generation Time: May 23, 2020 at 07:55 PM
7 | -- Server version: 10.1.35-MariaDB
8 | -- PHP Version: 7.1.21
9 |
10 | SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
11 | SET AUTOCOMMIT = 0;
12 | START TRANSACTION;
13 | SET time_zone = "+00:00";
14 |
15 |
16 | /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
17 | /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
18 | /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
19 | /*!40101 SET NAMES utf8mb4 */;
20 |
21 | --
22 | -- Database: `expdb`
23 | --
24 |
25 | -- --------------------------------------------------------
26 |
27 | --
28 | -- Table structure for table `chattable`
29 | --
30 |
31 | CREATE TABLE `chattable` (
32 | `username` varchar(20) NOT NULL,
33 | `message` varchar(200) NOT NULL,
34 | `time` varchar(100) NOT NULL
35 | ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
36 |
37 | --
38 | -- Dumping data for table `chattable`
39 | --
40 |
41 | INSERT INTO `chattable` (`username`, `message`, `time`) VALUES
42 | ('newuser', 'hi admin', '05/23/20 14.58:59
'),
43 | ('admin', 'hello who is this', '05/23/20 14.59:09'),
44 | ('newuser', 'this is new user', '05/23/20 14.59:19'),
45 | ('admin', 'how is your experience on this site', '05/23/20 14.59:36'),
46 | ('newuser', 'pretty good', '05/23/20 14.59:47'),
47 | ('admin', 'ok', '05/23/20 14.59:54');
48 |
49 | -- --------------------------------------------------------
50 |
51 | --
52 | -- Table structure for table `contacttable`
53 | --
54 |
55 | CREATE TABLE `contacttable` (
56 | `fullname` varchar(20) NOT NULL,
57 | `email` varchar(100) NOT NULL,
58 | `subject` varchar(100) NOT NULL,
59 | `message` varchar(200) NOT NULL,
60 | `time` varchar(100) NOT NULL
61 | ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
62 |
63 | --
64 | -- Dumping data for table `contacttable`
65 | --
66 |
67 | INSERT INTO `contacttable` (`fullname`, `email`, `subject`, `message`, `time`) VALUES
68 | ('aayush', 'amoldalwai1@gmail.com', 'ui improvement', 'improvent', '11/05/18 10.56:24'),
69 | ('aayush', 'amoldalwai1@gmail.com', 'hello keep up the good work!', 'improvent', '11/05/18 17.42:18'),
70 | ('ramesh', 'ramesh@gmail.com', 'add forum', 'suggestions', '11/06/18 11.04:19'),
71 | ('ramesh', 'amol.dalwai@somaiya.edu', 'add more ui courses', 'suggestions', '11/07/18 7.27:35'),
72 | ('jash', 'jash@gmail.com', 'use firebase', 'ui and design improvement', '11/08/18 18.30:19'),
73 | ('myron', 'myron@gmail.com', 'bootstrap', 'suggestions', '11/09/18 10.46:23'),
74 | ('luke', 'amoldalwai1@gmail.com', 'add more courses', 'improvent', '11/09/18 12.52:09'),
75 | ('jash', 'amol.dalwai@somaiya.edu', 'nice', 'ui and design improvement', '11/10/18 8.10:28'),
76 | ('newuser', 'newuser@gmail.com', 'increase number of courses', 'about courses', '05/23/20 9.44:12');
77 |
78 | -- --------------------------------------------------------
79 |
80 | --
81 | -- Table structure for table `counter`
82 | --
83 |
84 | CREATE TABLE `counter` (
85 | `visit` int(100) NOT NULL,
86 | `id` int(1) NOT NULL
87 | ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
88 |
89 | --
90 | -- Dumping data for table `counter`
91 | --
92 |
93 | INSERT INTO `counter` (`visit`, `id`) VALUES
94 | (350, 0),
95 | (176, 1),
96 | (34, 2),
97 | (62, 3);
98 |
99 | -- --------------------------------------------------------
100 |
101 | --
102 | -- Table structure for table `exptable`
103 | --
104 |
105 | CREATE TABLE `exptable` (
106 | `fname` varchar(20) NOT NULL,
107 | `password` varchar(10) NOT NULL,
108 | `email` varchar(100) NOT NULL
109 | ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
110 |
111 | --
112 | -- Dumping data for table `exptable`
113 | --
114 |
115 | INSERT INTO `exptable` (`fname`, `password`, `email`) VALUES
116 | ('amol.dalwai', 'amol@1234', 'amol.dalwai@somaiya.edu'),
117 | ('aayusk.ok', 'aayush@123', 'aayush.ok@somaiya.edu'),
118 | ('aayush.ok', '1234', 'aayush'),
119 | ('aaa', 'aaaa', 'aaaaa'),
120 | ('amol', 'amol123', 'amoldalwai@gmail.com'),
121 | ('luke', 'luke', 'luke@gmail.com'),
122 | ('amit', '1234', 'amit@gmail.com'),
123 | ('myron', 'myron123', 'myron@gmail.com'),
124 | ('prajwal', 'prajwal', 'prajwal@somaiya.edu'),
125 | ('jash', 'jash', 'jash@gmail.com'),
126 | ('rahul', 'rahul', 'rahul@gmail.com'),
127 | ('aayush', '12345', 'ak@somaiya.edu'),
128 | ('newuser123', 'newuser123', 'newuser123@gmail.com'),
129 | ('user141', 'user141', 'user141@gmail.com'),
130 | ('newuser', 'newuser', 'newuser@gmail.com'),
131 | ('demoaccount', 'demoaccoun', 'demoaccount@gmail.com'),
132 | ('newaccount', 'newaccount', 'newaccount@gmail.com');
133 |
134 | -- --------------------------------------------------------
135 |
136 | --
137 | -- Table structure for table `paymenttable`
138 | --
139 |
140 | CREATE TABLE `paymenttable` (
141 | `fname` varchar(10) NOT NULL,
142 | `password` varchar(10) NOT NULL,
143 | `cred` varchar(30) NOT NULL,
144 | `coursename` varchar(100) NOT NULL,
145 | `time` varchar(100) NOT NULL
146 | ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
147 |
148 | --
149 | -- Dumping data for table `paymenttable`
150 | --
151 |
152 | INSERT INTO `paymenttable` (`fname`, `password`, `cred`, `coursename`, `time`) VALUES
153 | ('amol', 'amol123', '1234567', 'android', '11/08/18 13.43:02'),
154 | ('luke', 'luke', '12321231', 'javascript', '11/08/18 13.44:08'),
155 | ('luke', 'luke', '12345', 'java', '11/08/18 13.45:21'),
156 | ('luke', 'luke', '1233433', 'bootstrap', '11/08/18 14.06:10'),
157 | ('amol', 'amol123', '1234134314', 'angularjs', '11/08/18 14.09:43'),
158 | ('myron', 'myron123', '1231343214', 'android', '11/08/18 14.11:34'),
159 | ('jash', 'jash', '111111111', 'reactjs', '11/08/18 18.31:55'),
160 | ('amol', 'amol123', '123456', 'java', '11/09/18 10.47:14'),
161 | ('luke', 'luke', '12345', 'reactjs', '11/09/18 10.56:51'),
162 | ('luke', 'luke', '12345', 'reactjs', '11/09/18 10.57:19'),
163 | ('rahul', 'rahul', '123456', 'bootstrap', '11/10/18 8.11:47'),
164 | ('rahul', 'rahul', '123456', 'bootstrap', '11/10/18 8.12:10'),
165 | ('rahul', 'rahul', '123456', 'chart-js', '11/10/18 8.12:26'),
166 | ('jash', 'jash', '1234', 'bootstrap', '11/11/18 8.00:44'),
167 | ('jash', 'jash', '123', 'android', '11/12/18 6.24:50'),
168 | ('jash', 'jash', '123', 'android', '11/12/18 6.33:27'),
169 | ('jash', 'jash', '123', 'android', '11/12/18 6.34:58'),
170 | ('jash', 'jash', '1`231231234', 'reactjs', '11/12/18 7.11:52'),
171 | ('jash', 'jash', '123', 'reactjs', '11/12/18 7.23:44'),
172 | ('jash', 'jash', '123456', 'reactjs', '11/12/18 7.27:16'),
173 | ('jash', 'jash', '123333', 'android', '11/12/18 9.42:33'),
174 | ('jash', 'jash', '123456', 'android', '11/12/18 10.31:08'),
175 | ('aayush', '12345', '123456', 'javascript', '11/12/18 11.15:57'),
176 | ('amol', 'amol123', '678777', 'reactjs', '11/12/18 13.06:11'),
177 | ('amol', 'amol123', '111111', 'javascript', '11/12/18 13.20:33'),
178 | ('amol', 'amol123', '123456', 'javascript', '05/22/20 7.04:33'),
179 | ('user141', 'user141', '123456', 'javascript', '05/22/20 7.07:49'),
180 | ('amol', 'amol123', '123456', 'javascript', '05/22/20 7.08:31'),
181 | ('amol', 'amol123', '123456', 'javascript', '05/22/20 7.08:38'),
182 | ('amol', 'amol123', '123456', 'chart-js', '05/23/20 8.32:51'),
183 | ('newuser', 'newuser', '123456', 'javascript', '05/23/20 9.45:13');
184 |
185 | -- --------------------------------------------------------
186 |
187 | --
188 | -- Table structure for table `ratingtable`
189 | --
190 |
191 | CREATE TABLE `ratingtable` (
192 | `fname` varchar(20) NOT NULL,
193 | `ui` int(10) NOT NULL,
194 | `performance` int(10) NOT NULL,
195 | `design` int(10) NOT NULL,
196 | `usablity` int(10) NOT NULL
197 | ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
198 |
199 | --
200 | -- Dumping data for table `ratingtable`
201 | --
202 |
203 | INSERT INTO `ratingtable` (`fname`, `ui`, `performance`, `design`, `usablity`) VALUES
204 | ('luke', 8, 7, 7, 6),
205 | ('luke', 10, 10, 10, 10),
206 | ('amol', 8, 3, 6, 7),
207 | ('amol', 5, 5, 5, 5),
208 | ('amol', 3, 2, 8, 9),
209 | ('luke', 6, 6, 4, 6),
210 | ('luke', 5, 5, 5, 5),
211 | ('luke', 10, 10, 10, 10),
212 | ('luke', 9, 8, 9, 10),
213 | ('luke', 10, 10, 10, 10),
214 | ('luke', 10, 10, 10, 10),
215 | ('luke', 10, 10, 10, 10),
216 | ('luke', 10, 10, 10, 10),
217 | ('jash', 10, 10, 10, 10),
218 | ('luke', 1, 1, 1, 1),
219 | ('luke', 1, 1, 1, 1),
220 | ('jash', 8, 6, 7, 7),
221 | ('jash', 8, 6, 7, 7),
222 | ('amol', 10, 10, 10, 10),
223 | ('amol', 7, 8, 9, 7),
224 | ('luke', 9, 3, 8, 4),
225 | ('amol', 7, 7, 7, 6),
226 | ('', 7, 7, 7, 6),
227 | ('rahul', 10, 10, 10, 10),
228 | ('jash', 10, 10, 9, 7),
229 | ('jash', 10, 9, 9, 9),
230 | ('jash', 10, 10, 10, 10),
231 | ('jash', 10, 10, 10, 10),
232 | ('jash', 10, 10, 10, 10),
233 | ('jash', 10, 10, 10, 10),
234 | ('jash', 9, 9, 9, 8),
235 | ('aayush', 10, 10, 10, 10),
236 | ('aayush', 10, 10, 10, 10),
237 | ('amol', 10, 10, 10, 10),
238 | ('luke', 10, 10, 10, 10),
239 | ('jash', 10, 10, 10, 10),
240 | ('jash', 10, 10, 10, 10),
241 | ('luke', 10, 10, 10, 10),
242 | ('luke', 10, 10, 10, 10),
243 | ('luke', 8, 7, 4, 7),
244 | ('luke', 8, 7, 4, 7),
245 | ('user141', 9, 8, 6, 9),
246 | ('newuser', 10, 10, 10, 10);
247 |
248 | -- --------------------------------------------------------
249 |
250 | --
251 | -- Table structure for table `reviewtable`
252 | --
253 |
254 | CREATE TABLE `reviewtable` (
255 | `username` varchar(20) NOT NULL,
256 | `comment` varchar(100) NOT NULL,
257 | `time` varchar(100) NOT NULL
258 | ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
259 |
260 | --
261 | -- Dumping data for table `reviewtable`
262 | --
263 |
264 | INSERT INTO `reviewtable` (`username`, `comment`, `time`) VALUES
265 | ('amol.dalwai', 'add chat feature', '11/04/18 15.09:43'),
266 | ('aayush.ok', 'good concept!', '11/04/18 15.11:48'),
267 | ('luke', 'hello its is well built site', '11/05/18 5.40:57'),
268 | ('luke', 'provide links and demo lectures ', '11/05/18 8.25:57'),
269 | ('amol.dalwai', 'improve the ui', '11/05/18 8.56:35'),
270 | ('aayush.ok', 'provide links and demo lectures ', '11/05/18 17.41:14'),
271 | ('aayush.ok', 'good concept!', '11/06/18 6.42:32'),
272 | ('amit', 'add chat feature', '11/07/18 7.27:01'),
273 | ('aayush.ok', 'hello its is well built site', '11/09/18 10.46:40'),
274 | ('rahul', 'provide links and demo lectures ', '11/10/18 8.09:47'),
275 | ('amol.dalwai', 'improve the ui', '11/12/18 7.10:45'),
276 | ('aayush.ok', 'improve the ui', '11/12/18 9.45:16'),
277 | ('amol.dalwai', 'good concept!', '11/12/18 11.11:48'),
278 | ('aayush', 'great work', '11/12/18 11.14:03'),
279 | ('luke', 'nzdoxkivjs', '11/12/18 13.18:55'),
280 | ('luke', 'nice design', '03/12/19 6.59:41'),
281 | ('aayush.ok', 'improve the ui', '07/20/19 20.38:34'),
282 | ('luke', 'add more courses', '05/21/20 14.12:25'),
283 | ('user141', 'no suggestions', '05/22/20 6.58:27'),
284 | ('amol', 'nice one', '05/23/20 8.34:01'),
285 | ('newuser', 'create more courses', '05/23/20 9.43:17');
286 | COMMIT;
287 |
288 | /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
289 | /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
290 | /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
291 |
--------------------------------------------------------------------------------
/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/forgotpassword.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
35 |
36 |
37 |
38 |
39 |
40 | learntocode.com
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
55 |
56 |
57 |
58 |
59 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
91 |
92 |
93 |
94 |
It will take just few seconds
95 |
134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 |
142 |
207 |
--------------------------------------------------------------------------------
/forgotpassword.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 | ";
46 | echo "All inputs are neccessary!
All inputs are necessary to log into your account
";
47 | echo "";
48 | }
49 | else
50 | {
51 |
52 | if($_SERVER['REQUEST_METHOD']=="GET")//con establish
53 | {
54 | $localhost = "localhost";
55 | $usernamew = "root";
56 | $passw = "";
57 | $db = "expdb";
58 | $conn = mysqli_connect($localhost,$usernamew,$passw,$db);
59 | if(!$conn){
60 | echo "";
61 | }
62 | else
63 | {
64 | echo "";
65 | }
66 | $result=mysqli_query($conn,"select * from exptable where fname='$fname' and email='$email'")
67 | or die("FAILED!!".mysql_error());
68 | $row=mysqli_fetch_array($result);
69 | if($fname=='admin' and $password=='admin'){
70 | header("Location: adminpanel.php");
71 | echo "hello Admin";
72 | }
73 | else
74 | {
75 | if($row['fname']==$fname and $row['email']==$email)
76 | {
77 | $sql = "update exptable SET password='$password' where fname='$fname'";
78 | $result = mysqli_query($conn,$sql);
79 |
80 |
81 | echo"";
82 | echo "Hello,".$fname."
Your Account Password has been updated!
";
83 | echo "";
84 |
85 |
86 | }
87 | else
88 | {
89 |
90 | echo"";
91 | echo "Username or Email is incorrect!
You need to enter valid username and email address
";
92 | echo "";
93 | }
94 | }
95 |
96 | }}}
97 | ?>
--------------------------------------------------------------------------------
/img/bg-banner.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/img/bg-banner.jpg
--------------------------------------------------------------------------------
/img/course01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/img/course01.jpg
--------------------------------------------------------------------------------
/img/course02.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/img/course02.jpg
--------------------------------------------------------------------------------
/img/course03.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/img/course03.jpg
--------------------------------------------------------------------------------
/img/course04.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/img/course04.jpg
--------------------------------------------------------------------------------
/img/course05.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/img/course05.jpg
--------------------------------------------------------------------------------
/img/course06.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/img/course06.jpg
--------------------------------------------------------------------------------
/img/course07.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/img/course07.jpg
--------------------------------------------------------------------------------
/img/course08.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/img/course08.jpg
--------------------------------------------------------------------------------
/img/mentor.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/img/mentor.jpg
--------------------------------------------------------------------------------
/js/custom.js:
--------------------------------------------------------------------------------
1 | (function($) {
2 |
3 | // Navigation scrolls
4 | $(".navbar-nav li a").on('click', function(event) {
5 | $('.navbar-nav li').removeClass('active');
6 | $(this).closest('li').addClass('active');
7 | var $anchor = $(this);
8 | var nav = $($anchor.attr('href'));
9 | if (nav.length) {
10 | $('html, body').stop().animate({
11 | scrollTop: $($anchor.attr('href')).offset().top
12 | }, 1500, 'easeInOutExpo');
13 |
14 | event.preventDefault();
15 | }
16 | });
17 | $(".navbar-collapse a").on('click', function() {
18 | $(".navbar-collapse.collapse").removeClass('in');
19 | });
20 |
21 | // Add smooth scrolling to all links in navbar
22 | $("a.mouse-hover, a.get-quote").on('click', function(event) {
23 | var hash = this.hash;
24 | if (hash) {
25 | event.preventDefault();
26 | $('html, body').animate({
27 | scrollTop: $(hash).offset().top
28 | }, 1500, 'easeInOutExpo');
29 | }
30 | });
31 | })(jQuery);
32 |
--------------------------------------------------------------------------------
/js/jquery.easing.min.js:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
3 | *
4 | * Uses the built in easing capabilities added In jQuery 1.1
5 | * to offer multiple easing options
6 | *
7 | * TERMS OF USE - EASING EQUATIONS
8 | *
9 | * Open source under the BSD License.
10 | *
11 | * Copyright © 2001 Robert Penner
12 | * All rights reserved.
13 | *
14 | * TERMS OF USE - jQuery Easing
15 | *
16 | * Open source under the BSD License.
17 | *
18 | * Copyright © 2008 George McGinley Smith
19 | * All rights reserved.
20 | *
21 | * Redistribution and use in source and binary forms, with or without modification,
22 | * are permitted provided that the following conditions are met:
23 | *
24 | * Redistributions of source code must retain the above copyright notice, this list of
25 | * conditions and the following disclaimer.
26 | * Redistributions in binary form must reproduce the above copyright notice, this list
27 | * of conditions and the following disclaimer in the documentation and/or other materials
28 | * provided with the distribution.
29 | *
30 | * Neither the name of the author nor the names of contributors may be used to endorse
31 | * or promote products derived from this software without specific prior written permission.
32 | *
33 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
34 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
35 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
36 | * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
37 | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
38 | * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
39 | * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
40 | * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
41 | * OF THE POSSIBILITY OF SUCH DAMAGE.
42 | *
43 | */
44 | jQuery.easing.jswing=jQuery.easing.swing;jQuery.extend(jQuery.easing,{def:"easeOutQuad",swing:function(e,f,a,h,g){return jQuery.easing[jQuery.easing.def](e,f,a,h,g)},easeInQuad:function(e,f,a,h,g){return h*(f/=g)*f+a},easeOutQuad:function(e,f,a,h,g){return -h*(f/=g)*(f-2)+a},easeInOutQuad:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f+a}return -h/2*((--f)*(f-2)-1)+a},easeInCubic:function(e,f,a,h,g){return h*(f/=g)*f*f+a},easeOutCubic:function(e,f,a,h,g){return h*((f=f/g-1)*f*f+1)+a},easeInOutCubic:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f+a}return h/2*((f-=2)*f*f+2)+a},easeInQuart:function(e,f,a,h,g){return h*(f/=g)*f*f*f+a},easeOutQuart:function(e,f,a,h,g){return -h*((f=f/g-1)*f*f*f-1)+a},easeInOutQuart:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f+a}return -h/2*((f-=2)*f*f*f-2)+a},easeInQuint:function(e,f,a,h,g){return h*(f/=g)*f*f*f*f+a},easeOutQuint:function(e,f,a,h,g){return h*((f=f/g-1)*f*f*f*f+1)+a},easeInOutQuint:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f*f+a}return h/2*((f-=2)*f*f*f*f+2)+a},easeInSine:function(e,f,a,h,g){return -h*Math.cos(f/g*(Math.PI/2))+h+a},easeOutSine:function(e,f,a,h,g){return h*Math.sin(f/g*(Math.PI/2))+a},easeInOutSine:function(e,f,a,h,g){return -h/2*(Math.cos(Math.PI*f/g)-1)+a},easeInExpo:function(e,f,a,h,g){return(f==0)?a:h*Math.pow(2,10*(f/g-1))+a},easeOutExpo:function(e,f,a,h,g){return(f==g)?a+h:h*(-Math.pow(2,-10*f/g)+1)+a},easeInOutExpo:function(e,f,a,h,g){if(f==0){return a}if(f==g){return a+h}if((f/=g/2)<1){return h/2*Math.pow(2,10*(f-1))+a}return h/2*(-Math.pow(2,-10*--f)+2)+a},easeInCirc:function(e,f,a,h,g){return -h*(Math.sqrt(1-(f/=g)*f)-1)+a},easeOutCirc:function(e,f,a,h,g){return h*Math.sqrt(1-(f=f/g-1)*f)+a},easeInOutCirc:function(e,f,a,h,g){if((f/=g/2)<1){return -h/2*(Math.sqrt(1-f*f)-1)+a}return h/2*(Math.sqrt(1-(f-=2)*f)+1)+a},easeInElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k)==1){return e+l}if(!j){j=k*0.3}if(g
5 |
6 |
7 |
16 |
17 |
18 |
19 |
20 |
38 |
39 | ";
49 | echo "All inputs are neccessary!
All inputs are necessary to log into your account
";
50 | echo "";
51 | }
52 | else
53 | {
54 |
55 | if($_SERVER['REQUEST_METHOD']=="GET")//con establish
56 | {
57 | $localhost = "localhost";
58 | $username = "root";
59 | $passw = "";
60 | $db = "expdb";
61 | $conn = mysqli_connect($localhost,$username,$passw,$db);
62 | if(!$conn){
63 | echo "";
64 | }
65 | else
66 | {
67 | echo "";
68 | }
69 | $result=mysqli_query($conn,"select * from exptable where fname='$fname' and password='$password'")
70 | or die("FAILED!!".mysql_error());
71 | $row=mysqli_fetch_array($result);
72 | if($fname=='admin' and $password=='admin'){
73 | header("Location: adminpanel1.php");
74 | echo "hello Admin";
75 | }
76 | else
77 | {
78 | if($row['fname']==$fname and $row['password']==$password)
79 | {
80 |
81 |
82 |
83 | $_SESSION["username"]=$fname;
84 | echo"";
85 |
86 | echo "Welcome,".$_SESSION["username"]."
We were waiting for you to check out your account
";
87 | echo "";
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 | }
111 | else
112 | {
113 |
114 | echo"";
115 | echo "Username or Password is incorrect!!
Looks like you have forgot your username or password
";
116 | echo "";
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 | ?>
--------------------------------------------------------------------------------
/logout.php:
--------------------------------------------------------------------------------
1 | ";
5 | header('Location:home.php');
6 |
7 |
8 |
9 |
10 | ?>
--------------------------------------------------------------------------------
/myaccount.php:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
199 |
200 |
201 |
202 |
203 |
204 | learntocode.com
205 |
206 |
207 |
208 |
209 |
210 |
211 |
212 |
213 |
219 |
220 |
221 |
222 |
223 |
247 |
248 |
249 |
250 |
251 |
252 |
253 |
254 |
255 |
256 |
257 |
258 |
259 |
265 |
266 |
267 |
268 |
269 | 
270 |
271 |
272 |
304 |
376 |
377 |
435 |
436 |
493 |
496 |
499 |
502 |
503 |
504 |
505 |
506 |
507 |
568 |
569 |
570 |
571 |
572 |

573 |
574 | 0) {
593 | while($row = mysqli_fetch_assoc($result)){
594 |
595 |
596 | echo "
".$row["email"]."
";
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 |
711 |
712 |
713 |
714 |
--------------------------------------------------------------------------------
/mydb.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/payment.php:
--------------------------------------------------------------------------------
1 |
11 |
15 |
16 |
17 |
18 |
19 |
20 |
39 |
40 |
41 |
42 | ";
54 | echo "Some input fields are empty!
All inputs are requires to Buy the course!
";
55 | echo "";
56 | }
57 | if(strlen($cred)!=6)
58 | {
59 | echo"";
60 | echo "Credit card number is invalid!
All inputs must be valid to Buy the course!
";
61 | echo "";
62 | }
63 | else
64 | {
65 |
66 | if($_SERVER['REQUEST_METHOD']=="GET")//con establish
67 | {
68 | $localhost = "localhost";
69 | $usernamew = "root";
70 | $passwordw = "";
71 | $db = "expdb";
72 | $conn = mysqli_connect($localhost,$usernamew,$passwordw,$db);
73 | if(!$conn){
74 | echo "";
75 | }
76 | else
77 | {
78 | echo "";
79 | }
80 | $result=mysqli_query($conn,"select * from exptable where fname='$fname' and password='$password'")
81 | or die("FAILED!!".mysql_error());
82 | $row=mysqli_fetch_array($result);
83 | if($row['fname']==$fname and $row['password']!=$password)
84 | {
85 |
86 | echo"";
87 | echo " Password is incorrect!!
Looks like you have forgot your password
";
88 | echo "";
89 | }
90 | else if($row['fname']==$fname and $row['password']==$password)//for success
91 | {
92 |
93 |
94 | $_SESSION["username"]=$fname;
95 | $paymenttime= date("m/d/y G.i:s
", time());
96 | $sql = "insert into paymenttable values('$fname','$password','$cred','$coursename','$paymenttime')";
97 | $result = mysqli_query($conn,$sql);
98 | echo"";
99 | echo "Congrats,". $_SESSION["username"]."
We have added ".$coursename. "
to your account
";
100 | echo "";
101 |
102 |
103 |
104 |
105 |
106 | }
107 |
108 |
109 | else if($row['fname']!=$fname )
110 | {
111 |
112 | echo"";
113 | echo "Username is incorrect!
Only account holders can buy the courses!
";
114 | echo "";
115 | }
116 |
117 |
118 | }}}
119 | ?>
--------------------------------------------------------------------------------
/paymentback.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/paymentback.png
--------------------------------------------------------------------------------
/review.php:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 |
12 |
31 |
32 |
33 | ";
43 | echo "Username or Suggestion is empty!
All inputs are requires to send suggestions!
";
44 | echo "";
45 |
46 | }
47 | else
48 | {
49 |
50 | if($_SERVER['REQUEST_METHOD']=="GET")//con establish
51 | {
52 | $localhost = "localhost";
53 | $usernamew = "root";
54 | $passwordw = "";
55 | $db = "expdb";
56 | $conn = mysqli_connect($localhost,$usernamew,$passwordw,$db);
57 | if(!$conn){
58 | echo "";
59 | }
60 | else
61 | {
62 | echo "";
63 | }
64 | $result=mysqli_query($conn,"select * from exptable where fname='$username'")
65 | or die("FAILED!!".mysql_error());
66 | $row=mysqli_fetch_array($result);
67 | if($row['fname']!=$username)
68 | {
69 |
70 | echo"";
71 | echo "Username is incorrect!
Only account holders can give suggestions!
";
72 | echo "";
73 | }
74 | else if($row['fname']==$username )
75 | {
76 |
77 | $reviewtime= date("m/d/y G.i:s
", time());
78 | $sql = "insert into reviewtable values('$username','$comment','$reviewtime')";
79 | $result = mysqli_query($conn,$sql);
80 | echo"";
81 | echo "Thank You,".$username."
We appreciate you for taking out your valueable time for us
";
82 | echo "";
83 | }
84 |
85 |
86 |
87 | }}}
88 | ?>
89 |
--------------------------------------------------------------------------------
/reviewback.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/reviewback.jpg
--------------------------------------------------------------------------------
/signupltc.php:
--------------------------------------------------------------------------------
1 |
10 |
11 |
12 |
13 |
14 |
34 |
35 |
36 |
37 | ";
48 | echo "All inputs are neccessary!
All inputs are necessary to create new account
";
49 | echo "";
50 | }
51 | else
52 | {
53 |
54 | if($_SERVER['REQUEST_METHOD']=="POST")//con establish
55 | {
56 | $localhost = "localhost";
57 | $username = "root";
58 | $password = "";
59 | $db = "expdb";
60 | $conn = mysqli_connect($localhost,$username,$password,$db);
61 | if(!$conn){
62 | echo "";
63 | }
64 | else
65 | {
66 | echo "";
67 | }
68 | $result=mysqli_query($conn,"select * from exptable where fname='$fname'")
69 | or die("FAILED!!".mysql_error());
70 | $row=mysqli_fetch_array($result);
71 | if($row['fname']==$fname){
72 | echo"";
73 | echo "Username,".$fname."
Alreday exists please choose another username to create new account
";
74 | echo "";
75 | }
76 | else
77 | {
78 | $sql = "insert into exptable values('$fname','$pass','$email')";
79 | $result = mysqli_query($conn,$sql);
80 | echo"";
81 | echo "Welcome,".$fname."
Hello welcome to the family of learners
";
82 | echo "";
83 | }
84 |
85 |
86 | }}}
87 | ?>
88 |
--------------------------------------------------------------------------------
/statistics.php:
--------------------------------------------------------------------------------
1 |
76 |
77 | 0) {
95 | while($row = mysqli_fetch_assoc($result)){
96 | $i++;
97 | }
98 |
99 |
100 |
101 |
102 | echo "
105 |
110 | ";
113 |
114 |
115 |
116 |
117 |
118 | }
119 | else
120 | {
121 |
122 | echo "0 results";
123 | }
124 | }
125 | }
126 | ?>
127 | 0) {
145 | while($row = mysqli_fetch_assoc($result)){
146 | $i++;
147 | }
148 |
149 |
150 |
151 |
152 | echo "
153 |
Account users
154 |
155 |
160 | ";
163 |
164 |
165 |
166 |
167 |
168 | }
169 | else
170 | {
171 |
172 | echo "0 results";
173 | }
174 | }
175 | }
176 | ?>
177 | 0) {
195 | while($row = mysqli_fetch_assoc($result)){
196 | $i++;
197 | }
198 |
199 |
200 |
201 |
202 | echo "
203 |
Courses bought
204 |
205 |
210 | ";
213 |
214 |
215 |
216 |
217 |
218 | }
219 | else
220 | {
221 |
222 | echo "0 results";
223 | }
224 | }
225 | }
226 | ?>
227 | 0) {
245 | while($row = mysqli_fetch_assoc($result)){
246 | $i++;
247 | }
248 |
249 |
250 |
251 |
252 | echo "
253 |
User suggestions
254 |
255 |
260 | ";
263 |
264 |
265 |
266 |
267 |
268 | }
269 | else
270 | {
271 |
272 | echo "0 results";
273 | }
274 | }
275 | }
276 | ?>
--------------------------------------------------------------------------------
/tablereadme.txt:
--------------------------------------------------------------------------------
1 | visit counts
2 | 0-homepage php
3 | 1-course pages php
4 | 2-aboutus page
--------------------------------------------------------------------------------
/usermessage.php:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 | My Messages
14 |
15 |
58 |
59 |
60 | ";
92 | echo "";
93 | echo "Sr | Subject | Message | Time of Review | ";
94 | echo "";
95 | echo "
";
96 | echo "
";
97 | echo "";
98 | if (mysqli_num_rows($result) > 0) {
99 | while($row = mysqli_fetch_assoc($result)){
100 | $i++;
101 | echo "";
102 | echo "".$i." | ".$row['subject']." | ".$row['message']." | ".$row['time']." | ";
103 | echo "
";
104 |
105 |
106 |
107 | }
108 | echo "
";
109 | echo "$i";
110 | }
111 | else{
112 |
113 | echo "";
114 | }
115 | }
116 | }
117 | ?>
--------------------------------------------------------------------------------
/userpayment.php:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | My Courses
15 |
16 |
82 |
83 |
84 | ";
116 | echo "";
117 | echo "Sr | Course-Name | Time of Purchase | Options | ";
118 | echo "";
119 | echo "
";
120 | echo "
";
121 | echo "";
122 | if (mysqli_num_rows($result) > 0) {
123 | while($row = mysqli_fetch_assoc($result)){
124 | $i++;
125 | echo "";
126 | echo "".$i." | ".$row['coursename']." | ".$row['time']." |
127 | | ";
128 | echo "
";
129 |
130 |
131 |
132 | }
133 | echo "
";
134 | echo "$i";
135 | }
136 | else{
137 |
138 | echo "";
139 | }
140 | }
141 | }
142 | ?>
--------------------------------------------------------------------------------
/userratingdb.php:
--------------------------------------------------------------------------------
1 |
11 |
12 |
13 |
14 |
15 |
34 |
40 |
41 |
42 |
43 |
44 | ";
82 | echo "Thank You, ".$fname."
We appreciate you for taking out your valueable time for us
";
83 | echo "";
84 |
85 |
86 |
87 | }}}
88 | ?>
--------------------------------------------------------------------------------
/userratingpage.php:
--------------------------------------------------------------------------------
1 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | learntocode.com
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
81 |
162 |
163 |
164 |
165 |
166 |
167 |
168 |
169 |
170 |
192 |
193 |
194 |
213 |
214 |
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 |
--------------------------------------------------------------------------------
/usersuggestion.php:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 | My Reviews
14 |
15 |
58 |
59 |
60 | ";
92 | echo "";
93 | echo "Sr | Comment | Time of Review | ";
94 | echo "";
95 | echo "
";
96 | echo "
";
97 | echo "";
98 | if (mysqli_num_rows($result) > 0) {
99 | while($row = mysqli_fetch_assoc($result)){
100 | $i++;
101 | echo "";
102 | echo "".$i." | ".$row['comment']." | ".$row['time']." | ";
103 | echo "
";
104 |
105 |
106 |
107 | }
108 | echo "
";
109 | echo "$i";
110 | }
111 | else{
112 |
113 | echo "0 results";
114 | }
115 | }
116 | }
117 | ?>
--------------------------------------------------------------------------------
/wall.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/wall.jpg
--------------------------------------------------------------------------------
/wall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/amoldalwai/E-learning-Website/ffb9e911438b285f16ffe4749eb4eda3a93f8426/wall.png
--------------------------------------------------------------------------------