├── .htaccess ├── Database └── cc_db.sql ├── LICENSE ├── README.md ├── about.php ├── addassessment.php ├── addnewfaculty.php ├── addnewstudent.php ├── addvideos.php ├── adminhead.php ├── adminlogin.php ├── allfoot.php ├── allhead.php ├── askquery.php ├── assessment.php ├── css ├── bootstrap.css ├── bootstrap.min.css └── modern-business.css ├── database.php ├── error_log ├── examDetails.php ├── facultydetails.php ├── facultylogin.php ├── fhead.php ├── font-awesome ├── css │ ├── font-awesome.css │ └── font-awesome.min.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── less │ ├── bordered-pulled.less │ ├── core.less │ ├── fixed-width.less │ ├── font-awesome.less │ ├── icons.less │ ├── larger.less │ ├── list.less │ ├── mixins.less │ ├── path.less │ ├── rotated-flipped.less │ ├── spinning.less │ ├── stacked.less │ └── variables.less └── scss │ ├── _bordered-pulled.scss │ ├── _core.scss │ ├── _fixed-width.scss │ ├── _icons.scss │ ├── _larger.scss │ ├── _list.scss │ ├── _mixins.scss │ ├── _path.scss │ ├── _rotated-flipped.scss │ ├── _spinning.scss │ ├── _stacked.scss │ ├── _variables.scss │ └── font-awesome.scss ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── footadmin.php ├── guestdetails.php ├── images ├── 14522157584_a67ab2e898_o.png ├── 1900x10801.png ├── 1900x10802.png ├── 1900x10803.png ├── 3271.jpg ├── 687474703a2f2f707265636973696f6e2d736f6674776172652e636f6d2f77702d636f6e74656e742f75706c6f6164732f323031342f30342f6a5175726572792e676966.gif ├── 7fb1f193435815a86c8484f82b9589e1 - Copy.jpg ├── 7fb1f193435815a86c8484f82b9589e1.jpg ├── Hopeful_student_1.jpg ├── Javascript-shopping-cart.png ├── Returning-Student.jpg ├── apache_webserver_logo.png ├── favicon.ico ├── favicon2-1.jpg ├── happy_student4.jpg ├── library_guy_900x400.jpg ├── maxresdefault.jpg ├── new │ ├── 20160518144520.jpg │ ├── 253f9ac.jpg │ ├── Lærer-studerende-på-UCN.jpg │ ├── sif10225.225782846266003821356.jpg │ ├── teacher2.jpg │ ├── teacher222223.jpg │ └── young_woman_with_laptop_english_teacher_visual_stage.jpg ├── photothumb.db ├── smilingFemaleStudent.jpg └── welcome46.jpg ├── index.php ├── js ├── bootstrap.js ├── bootstrap.min.js ├── contact_me.js ├── jqBootstrapValidation.js └── jquery.js ├── loginlinkadmin.php ├── loginlinkfaculty.php ├── loginlinkstudent.php ├── logoutadmin.php ├── logoutfaculty.php ├── logoutstudent.php ├── makeresult.php ├── manageassessment.php ├── manageassessment2.php ├── managevideos.php ├── managevideos2.php ├── mydetailsfaculty.php ├── mydetailsstudent.php ├── postquerypublic.php ├── qureydetails.php ├── registrationform.php ├── resultdetails.php ├── studentdetails.php ├── studenthead.php ├── studentlogin.php ├── takeassessment.php ├── takeassessment2.php ├── updatedetailsfromfaculty.php ├── updatedetailsfromstudent.php ├── updatefaculty.php ├── updateguest.php ├── updatequery.php ├── updateresultdetails.php ├── updatestudent.php ├── videos.php ├── viewquery.php ├── viewresult.php ├── viewstudentdetails.php ├── viewvideos.php ├── viewvideos2.php ├── welcomeadmin.php ├── welcomefaculty.php └── welcomestudent.php /.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine On 2 | RewriteCond %{REQUEST_FILENAME} !-f 3 | RewriteRule ^([^\.]+)$ $1.php [NC,L] 4 | -------------------------------------------------------------------------------- /Database/cc_db.sql: -------------------------------------------------------------------------------- 1 | -- phpMyAdmin SQL Dump 2 | -- version 4.5.1 3 | -- http://www.phpmyadmin.net 4 | -- 5 | -- Host: 127.0.0.1 6 | -- Generation Time: May 27, 2018 at 07:10 PM 7 | -- Server version: 10.1.16-MariaDB 8 | -- PHP Version: 7.0.9 9 | 10 | SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; 11 | SET time_zone = "+00:00"; 12 | 13 | 14 | /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; 15 | /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; 16 | /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; 17 | /*!40101 SET NAMES utf8mb4 */; 18 | 19 | -- 20 | -- Database: `cc_db` 21 | -- 22 | 23 | -- -------------------------------------------------------- 24 | 25 | -- 26 | -- Table structure for table `admin` 27 | -- 28 | 29 | CREATE TABLE `admin` ( 30 | `Aid` varchar(35) NOT NULL, 31 | `Apass` varchar(35) NOT NULL 32 | ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 33 | 34 | -- 35 | -- Dumping data for table `admin` 36 | -- 37 | 38 | INSERT INTO `admin` (`Aid`, `Apass`) VALUES 39 | ('admin@ics.com', 'admin'), 40 | ('vishu', 'vishu'); 41 | 42 | -- -------------------------------------------------------- 43 | 44 | -- 45 | -- Table structure for table `examans` 46 | -- 47 | 48 | CREATE TABLE `examans` ( 49 | `EAnsID` int(50) NOT NULL, 50 | `ExamID` int(10) NOT NULL, 51 | `Senrl` varchar(50) NOT NULL, 52 | `Sname` varchar(50) NOT NULL, 53 | `Ans1` mediumtext NOT NULL, 54 | `Ans2` mediumtext NOT NULL, 55 | `Ans3` mediumtext NOT NULL, 56 | `Ans4` mediumtext NOT NULL, 57 | `Ans5` mediumtext NOT NULL 58 | ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 59 | 60 | -- 61 | -- Dumping data for table `examans` 62 | -- 63 | 64 | INSERT INTO `examans` (`EAnsID`, `ExamID`, `Senrl`, `Sname`, `Ans1`, `Ans2`, `Ans3`, `Ans4`, `Ans5`) VALUES 65 | (1, 3, '146891659', 'hello hello', 'a', 'b', 'c', 'd', 'e'), 66 | (2, 4, '146891659', 'hello hello', 'q', 'q', 'q', 'q', 'q'), 67 | (3, 7, '146891659', 'hello hello', 'q', 'q', 'q', 'q', 'q'); 68 | 69 | -- -------------------------------------------------------- 70 | 71 | -- 72 | -- Table structure for table `examdetails` 73 | -- 74 | 75 | CREATE TABLE `examdetails` ( 76 | `ExamID` int(50) NOT NULL, 77 | `ExamName` varchar(50) NOT NULL, 78 | `Q1` varchar(10000) NOT NULL, 79 | `Q2` varchar(10000) NOT NULL, 80 | `Q3` varchar(10000) NOT NULL, 81 | `Q4` varchar(10000) NOT NULL, 82 | `Q5` varchar(10000) NOT NULL 83 | ) ENGINE=InnoDB DEFAULT CHARSET=latin1; 84 | 85 | -- 86 | -- Dumping data for table `examdetails` 87 | -- 88 | 89 | INSERT INTO `examdetails` (`ExamID`, `ExamName`, `Q1`, `Q2`, `Q3`, `Q4`, `Q5`) VALUES 90 | (4, 'HTML', 'What is the previous version of HTML, prior to HTML5?', ' What does HTML stand for?', 'Who is making the Web standards?', 'Choose the correct HTML element for the largest heading:', 'What is the correct HTML element for inserting a line break?'), 91 | (5, ' PHP', ' What does PHP stand for?', 'PHP server scripts are surrounded by delimiters, which?', 'How do you write "Hello World" in PHP', ' All variables in PHP start with which symbol?', 'What is the correct way to end a PHP statement?'), 92 | (6, 'SQL', 'What does SQL stand for?', 'Which SQL statement is used to extract data from a database?', 'Which SQL statement is used to update data in a database?', 'Which SQL statement is used to delete data from a database?', 'Which SQL statement is used to insert new data in a database?'), 93 | (9, 'JavaScript', 'Inside which HTML element do we put the JavaScript?', 'What is the correct JavaScript syntax to change the content of the HTML element below?\r\n\r\n\r\n

This is a demonstration.

', 'Where is the correct place to insert a JavaScript?', 'What is the correct syntax for referring to an external script called "xxx.js"?', 'The external JavaScript file must contain the 205 | 206 | 207 | 208 | 209 | 210 | 215 | 216 | 217 | 218 | -------------------------------------------------------------------------------- /addassessment.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 |
14 |
15 | 16 |

Welcome Faculty :

17 | 29 |
30 | × 31 |

Assessment added Sucessfully.

33 |
34 |
35 | 36 | "; 37 | 38 | $sql = "INSERT INTO `ExamDetails` (`ExamName`, `Q1`, `Q2`, `Q3`, `Q4`, `Q5`) VALUES ('$Aname','$q1','$q2','$q3','$q4','$q5')"; 39 | //close the connection 40 | mysqli_query( $connect, $sql ); 41 | 42 | echo $done; 43 | } 44 | 45 | ?> 46 | 47 |
48 | Add Assessment 49 |
50 | 51 | 52 | 53 | 55 | 58 | 59 | 60 | 61 | 62 | 65 | 66 | 67 | 68 | 71 | 72 | 73 | 74 | 77 | 78 | 79 | 80 | 83 | 84 | 85 | 86 | 89 | 90 | 91 | 93 | 94 |
Assessment Name 54 | 56 | 57 |
Question 1 63 | 64 |
Question 2 69 | 70 |
Question 3 75 | 76 |
Question 4 81 | 82 |
Question 5 87 | 88 |
92 |
95 |
96 |
97 |
98 |
99 | -------------------------------------------------------------------------------- /addnewfaculty.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 |
13 |
14 |
15 | 16 | 17 | 20 |
21 | 22 | 23 |
24 | 25 | 26 |
27 | 28 |
29 | 30 | 31 |
32 | 33 |
34 | 35 | 36 |
37 | 38 |
39 | 40 | Male 41 | Female 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 | 72 | 73 | 89 |

90 |
91 | × 92 | Success! New Faculty Addded Faculty ID is : " . mysqli_insert_id( $connect ) . "
"; 93 | 94 | } else { 95 | //error message if SQL query Fails 96 | echo "
New Faculty Adding Faliure. Try Again
Error Details: " . $sql . "
" . mysqli_error( $connect ); 97 | } 98 | //close the connection 99 | mysqli_close( $connect ); 100 | 101 | } 102 | 103 | 104 | ?> 105 |
106 |
107 | 108 | -------------------------------------------------------------------------------- /addnewstudent.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 |
13 | 14 |
15 |
× 32 |

Admission Confirm.! Enrolment Number is : " . mysqli_insert_id( $connect ) . "

33 | "; 34 | } else { 35 | //error message if SQL query fails 36 | echo "
Admission Faliure. Try Again
Error Details: " . $sql . "
" . mysqli_error( $connect ); 37 | } 38 | //close the connection 39 | mysqli_close( $connect ); 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 | Male 76 | Female 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 | -------------------------------------------------------------------------------- /addvideos.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 |
14 |
15 | 16 |

Welcome Faculty :

17 | 27 |
28 | × 29 |

Video added Sucessfully.

31 |
32 |
33 | 34 | "; 35 | 36 | $sql = "INSERT INTO `Video` (`V_Title`, `V_Url`, `V_Remarks`) VALUES ('$title','$v_url','$v_info')"; 37 | //close the connection 38 | mysqli_query( $connect, $sql ); 39 | 40 | echo $done; 41 | } 42 | 43 | ?> 44 | 45 |
46 | Add Videos 47 |
48 | 49 | 50 | 51 | 53 | 56 | 57 | 58 | 59 | 60 | 63 | 64 | 65 | 66 | 69 | 70 | 71 | 73 | 74 |
Video Title 52 | 54 | 55 |
Video URL 61 | 62 |
Video Description 67 | 68 |
72 |
75 |
76 |
77 |
78 |
79 | -------------------------------------------------------------------------------- /adminhead.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | Cloud Classrooms 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 28 | 29 | 30 | 31 | 32 | 33 |
34 | 35 | 67 |
-------------------------------------------------------------------------------- /adminlogin.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |
6 |
7 |
8 | 9 |

 Admin Login

10 |
11 | 12 |
13 |
14 |
15 | 16 | 17 |

18 |
19 |
20 |
21 |
22 | 23 | 24 |

25 |
26 |
27 |
28 | 29 | 32 |
33 |
34 | 35 |
36 |
37 | -------------------------------------------------------------------------------- /allfoot.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 |
6 | 7 |
8 |
9 |
10 | 11 |
12 | 13 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /allhead.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | Cloud Classrooms 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 28 | 29 | 30 | 31 | 32 | 33 |
34 | 35 | 85 |
-------------------------------------------------------------------------------- /askquery.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 |
15 |
16 |
17 |

Welcome ".$userfname." ".$userlname."";?>

18 | 23 |
24 |
25 |
26 |
27 |
28 | Query Details 29 | 30 | Email ID : 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 |
31 |

32 |

41 |
42 | 43 |

Query :


44 | 45 | 46 | 47 |
48 | 49 |
50 |
51 |
52 |
53 |
54 | 62 |

63 |
64 | × 65 | Success! Your Query Added Successfully. Reff. No: " . mysqli_insert_id( $connect ) . " 66 |
"; 67 | } else { 68 | //error message if SQL query fails 69 | echo "
Query Addeding Faliure. Try Again
Error Details: " . $sql . "
" . mysqli_error( $connect ); 70 | } 71 | //close the connection 72 | mysqli_close( $connect ); 73 | } 74 | ?> 75 |
76 |
77 | -------------------------------------------------------------------------------- /assessment.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 |
14 |
15 | 16 |

Welcome Faculty :

17 | 18 | 19 |
20 |
21 | -------------------------------------------------------------------------------- /css/modern-business.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Start Bootstrap - Modern Business (http://startbootstrap.com/) 3 | * Copyright 2013-2016 Start Bootstrap 4 | * Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap/blob/gh-pages/LICENSE) 5 | */ 6 | 7 | /* Global Styles */ 8 | 9 | html, 10 | body { 11 | height: 100%; 12 | } 13 | 14 | body { 15 | padding-top: 50px; /* Required padding for .navbar-fixed-top. Remove if using .navbar-static-top. Change if height of navigation changes. */ 16 | } 17 | 18 | .img-portfolio { 19 | margin-bottom: 30px; 20 | } 21 | 22 | .img-hover:hover { 23 | opacity: 0.8; 24 | } 25 | 26 | /* Home Page Carousel */ 27 | 28 | header.carousel { 29 | height: 50%; 30 | } 31 | 32 | header.carousel .item, 33 | header.carousel .item.active, 34 | header.carousel .carousel-inner { 35 | height: 100%; 36 | } 37 | 38 | header.carousel .fill { 39 | width: 100%; 40 | height: 100%; 41 | background-position: center; 42 | background-size: cover; 43 | } 44 | 45 | /* 404 Page Styles */ 46 | 47 | .error-404 { 48 | font-size: 100px; 49 | } 50 | 51 | /* Pricing Page Styles */ 52 | 53 | .price { 54 | display: block; 55 | font-size: 50px; 56 | line-height: 50px; 57 | } 58 | 59 | .price sup { 60 | top: -20px; 61 | left: 2px; 62 | font-size: 20px; 63 | } 64 | 65 | .period { 66 | display: block; 67 | font-style: italic; 68 | } 69 | 70 | /* Footer Styles */ 71 | 72 | footer { 73 | margin: 50px 0; 74 | } 75 | 76 | /* Responsive Styles */ 77 | 78 | @media(max-width:991px) { 79 | .customer-img, 80 | .img-related { 81 | margin-bottom: 30px; 82 | } 83 | } 84 | 85 | @media(max-width:767px) { 86 | .img-portfolio { 87 | margin-bottom: 15px; 88 | } 89 | 90 | header.carousel .carousel { 91 | height: 70%; 92 | } 93 | } -------------------------------------------------------------------------------- /database.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examDetails.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | 13 |
14 |
15 | 16 | 17 |
27 |
28 | × 29 | Success! Exam details deleted. 30 |
31 | "; 32 | } else { 33 | //error message if SQL query fails 34 | echo "
Exam Details Updation Faliure. Try Again
Error Details: " . $sql . "
" . mysqli_error( $connect ); 35 | } 36 | } 37 | //close the connection 38 | mysqli_close( $connect ); 39 | ?> 40 |
41 |
42 |
43 |

Welcome Faculty :

44 | 45 | Assessment Details"; 51 | echo " 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | "; 63 | while($row=mysqli_fetch_array($rs)) 64 | { 65 | ?> 66 | 67 | 70 | 73 | 76 | 79 | 82 | 85 | 88 | 90 | 92 | 93 | 96 |
Exam IDEnrolment NumberAns1Ans2Ans3Ans4Ans5DeleteMake Result
68 | 69 | 71 | 72 | 74 | 75 | 77 | 78 | 80 | 81 | 83 | 84 | 86 | 87 | 89 | 91 |
97 | 98 |
99 |
100 | -------------------------------------------------------------------------------- /facultydetails.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 |
13 |
14 |
26 |
27 | × 28 | Success! Faculty Details has been deleted. 29 |
"; 30 | } else { 31 | //error message if SQL query fails 32 | echo "
Faculty Details Updation Faliure. Try Again
Error Details: " . $sql . "
" . mysqli_error( $connect ); 33 | } 34 | //close the connection 35 | mysqli_close( $connect ); 36 | } 37 | ?> 38 |
39 | 40 | 41 |
42 |
43 | 44 | Facutly Details"; 49 | echo " 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | "; 63 | while ( $row = mysqli_fetch_array( $result ) ) { 64 | ?> 65 | 66 | 67 | 70 | 73 | 76 | 79 | 82 | 85 | 88 | 91 | 94 | 96 | 98 | 99 | 100 |
IDFirst NameFather NameAddrsGenderJoining DateCityPhone NumberPasswordEditDelete
68 | 69 | 71 | 72 | 74 | 75 | 77 | 78 | 80 | 81 | 83 | 84 | 86 | 87 | 89 | 90 | 92 | 93 | 95 | 97 |
101 | 102 | 103 |
104 |
105 | 106 | -------------------------------------------------------------------------------- /facultylogin.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 |
6 |
7 | 8 | 9 |

  Faculty Login

10 |
11 |
12 |
13 |
14 | 15 | 16 |

17 |
18 |
19 |
20 |
21 | 22 | 23 |

24 |
25 |
26 |
27 | 28 | 31 |
32 |
33 | 34 |
35 |
36 | -------------------------------------------------------------------------------- /fhead.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | Cloud Classrooms 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 28 | 29 | 30 | 31 | 32 | 33 |
34 | 35 | 66 |
-------------------------------------------------------------------------------- /font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .@{fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /font-awesome/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal 14px/1 FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | } 12 | -------------------------------------------------------------------------------- /font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "spinning.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | -------------------------------------------------------------------------------- /font-awesome/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /font-awesome/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: (-@fa-li-width + (4em / 14)); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /font-awesome/less/mixins.less: -------------------------------------------------------------------------------- 1 | // Mixins 2 | // -------------------------- 3 | 4 | .fa-icon() { 5 | display: inline-block; 6 | font: normal normal normal 14px/1 FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | } 12 | 13 | .fa-icon-rotate(@degrees, @rotation) { 14 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation); 15 | -webkit-transform: rotate(@degrees); 16 | -ms-transform: rotate(@degrees); 17 | transform: rotate(@degrees); 18 | } 19 | 20 | .fa-icon-flip(@horiz, @vert, @rotation) { 21 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation, mirror=1); 22 | -webkit-transform: scale(@horiz, @vert); 23 | -ms-transform: scale(@horiz, @vert); 24 | transform: scale(@horiz, @vert); 25 | } 26 | -------------------------------------------------------------------------------- /font-awesome/less/path.less: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); 7 | src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), 8 | url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), 9 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), 10 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); 11 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 12 | font-weight: normal; 13 | font-style: normal; 14 | } 15 | -------------------------------------------------------------------------------- /font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .@{fa-css-prefix}-rotate-90, 15 | :root .@{fa-css-prefix}-rotate-180, 16 | :root .@{fa-css-prefix}-rotate-270, 17 | :root .@{fa-css-prefix}-flip-horizontal, 18 | :root .@{fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /font-awesome/less/spinning.less: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | @-webkit-keyframes fa-spin { 10 | 0% { 11 | -webkit-transform: rotate(0deg); 12 | transform: rotate(0deg); 13 | } 14 | 100% { 15 | -webkit-transform: rotate(359deg); 16 | transform: rotate(359deg); 17 | } 18 | } 19 | 20 | @keyframes fa-spin { 21 | 0% { 22 | -webkit-transform: rotate(0deg); 23 | transform: rotate(0deg); 24 | } 25 | 100% { 26 | -webkit-transform: rotate(359deg); 27 | transform: rotate(359deg); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /font-awesome/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /font-awesome/less/variables.less: -------------------------------------------------------------------------------- 1 | // Variables 2 | // -------------------------- 3 | 4 | @fa-font-path: "../fonts"; 5 | //@fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.2.0/fonts"; // for referencing Bootstrap CDN font files directly 6 | @fa-css-prefix: fa; 7 | @fa-version: "4.2.0"; 8 | @fa-border-color: #eee; 9 | @fa-inverse: #fff; 10 | @fa-li-width: (30em / 14); 11 | 12 | @fa-var-adjust: "\f042"; 13 | @fa-var-adn: "\f170"; 14 | @fa-var-align-center: "\f037"; 15 | @fa-var-align-justify: "\f039"; 16 | @fa-var-align-left: "\f036"; 17 | @fa-var-align-right: "\f038"; 18 | @fa-var-ambulance: "\f0f9"; 19 | @fa-var-anchor: "\f13d"; 20 | @fa-var-android: "\f17b"; 21 | @fa-var-angellist: "\f209"; 22 | @fa-var-angle-double-down: "\f103"; 23 | @fa-var-angle-double-left: "\f100"; 24 | @fa-var-angle-double-right: "\f101"; 25 | @fa-var-angle-double-up: "\f102"; 26 | @fa-var-angle-down: "\f107"; 27 | @fa-var-angle-left: "\f104"; 28 | @fa-var-angle-right: "\f105"; 29 | @fa-var-angle-up: "\f106"; 30 | @fa-var-apple: "\f179"; 31 | @fa-var-archive: "\f187"; 32 | @fa-var-area-chart: "\f1fe"; 33 | @fa-var-arrow-circle-down: "\f0ab"; 34 | @fa-var-arrow-circle-left: "\f0a8"; 35 | @fa-var-arrow-circle-o-down: "\f01a"; 36 | @fa-var-arrow-circle-o-left: "\f190"; 37 | @fa-var-arrow-circle-o-right: "\f18e"; 38 | @fa-var-arrow-circle-o-up: "\f01b"; 39 | @fa-var-arrow-circle-right: "\f0a9"; 40 | @fa-var-arrow-circle-up: "\f0aa"; 41 | @fa-var-arrow-down: "\f063"; 42 | @fa-var-arrow-left: "\f060"; 43 | @fa-var-arrow-right: "\f061"; 44 | @fa-var-arrow-up: "\f062"; 45 | @fa-var-arrows: "\f047"; 46 | @fa-var-arrows-alt: "\f0b2"; 47 | @fa-var-arrows-h: "\f07e"; 48 | @fa-var-arrows-v: "\f07d"; 49 | @fa-var-asterisk: "\f069"; 50 | @fa-var-at: "\f1fa"; 51 | @fa-var-automobile: "\f1b9"; 52 | @fa-var-backward: "\f04a"; 53 | @fa-var-ban: "\f05e"; 54 | @fa-var-bank: "\f19c"; 55 | @fa-var-bar-chart: "\f080"; 56 | @fa-var-bar-chart-o: "\f080"; 57 | @fa-var-barcode: "\f02a"; 58 | @fa-var-bars: "\f0c9"; 59 | @fa-var-beer: "\f0fc"; 60 | @fa-var-behance: "\f1b4"; 61 | @fa-var-behance-square: "\f1b5"; 62 | @fa-var-bell: "\f0f3"; 63 | @fa-var-bell-o: "\f0a2"; 64 | @fa-var-bell-slash: "\f1f6"; 65 | @fa-var-bell-slash-o: "\f1f7"; 66 | @fa-var-bicycle: "\f206"; 67 | @fa-var-binoculars: "\f1e5"; 68 | @fa-var-birthday-cake: "\f1fd"; 69 | @fa-var-bitbucket: "\f171"; 70 | @fa-var-bitbucket-square: "\f172"; 71 | @fa-var-bitcoin: "\f15a"; 72 | @fa-var-bold: "\f032"; 73 | @fa-var-bolt: "\f0e7"; 74 | @fa-var-bomb: "\f1e2"; 75 | @fa-var-book: "\f02d"; 76 | @fa-var-bookmark: "\f02e"; 77 | @fa-var-bookmark-o: "\f097"; 78 | @fa-var-briefcase: "\f0b1"; 79 | @fa-var-btc: "\f15a"; 80 | @fa-var-bug: "\f188"; 81 | @fa-var-building: "\f1ad"; 82 | @fa-var-building-o: "\f0f7"; 83 | @fa-var-bullhorn: "\f0a1"; 84 | @fa-var-bullseye: "\f140"; 85 | @fa-var-bus: "\f207"; 86 | @fa-var-cab: "\f1ba"; 87 | @fa-var-calculator: "\f1ec"; 88 | @fa-var-calendar: "\f073"; 89 | @fa-var-calendar-o: "\f133"; 90 | @fa-var-camera: "\f030"; 91 | @fa-var-camera-retro: "\f083"; 92 | @fa-var-car: "\f1b9"; 93 | @fa-var-caret-down: "\f0d7"; 94 | @fa-var-caret-left: "\f0d9"; 95 | @fa-var-caret-right: "\f0da"; 96 | @fa-var-caret-square-o-down: "\f150"; 97 | @fa-var-caret-square-o-left: "\f191"; 98 | @fa-var-caret-square-o-right: "\f152"; 99 | @fa-var-caret-square-o-up: "\f151"; 100 | @fa-var-caret-up: "\f0d8"; 101 | @fa-var-cc: "\f20a"; 102 | @fa-var-cc-amex: "\f1f3"; 103 | @fa-var-cc-discover: "\f1f2"; 104 | @fa-var-cc-mastercard: "\f1f1"; 105 | @fa-var-cc-paypal: "\f1f4"; 106 | @fa-var-cc-stripe: "\f1f5"; 107 | @fa-var-cc-visa: "\f1f0"; 108 | @fa-var-certificate: "\f0a3"; 109 | @fa-var-chain: "\f0c1"; 110 | @fa-var-chain-broken: "\f127"; 111 | @fa-var-check: "\f00c"; 112 | @fa-var-check-circle: "\f058"; 113 | @fa-var-check-circle-o: "\f05d"; 114 | @fa-var-check-square: "\f14a"; 115 | @fa-var-check-square-o: "\f046"; 116 | @fa-var-chevron-circle-down: "\f13a"; 117 | @fa-var-chevron-circle-left: "\f137"; 118 | @fa-var-chevron-circle-right: "\f138"; 119 | @fa-var-chevron-circle-up: "\f139"; 120 | @fa-var-chevron-down: "\f078"; 121 | @fa-var-chevron-left: "\f053"; 122 | @fa-var-chevron-right: "\f054"; 123 | @fa-var-chevron-up: "\f077"; 124 | @fa-var-child: "\f1ae"; 125 | @fa-var-circle: "\f111"; 126 | @fa-var-circle-o: "\f10c"; 127 | @fa-var-circle-o-notch: "\f1ce"; 128 | @fa-var-circle-thin: "\f1db"; 129 | @fa-var-clipboard: "\f0ea"; 130 | @fa-var-clock-o: "\f017"; 131 | @fa-var-close: "\f00d"; 132 | @fa-var-cloud: "\f0c2"; 133 | @fa-var-cloud-download: "\f0ed"; 134 | @fa-var-cloud-upload: "\f0ee"; 135 | @fa-var-cny: "\f157"; 136 | @fa-var-code: "\f121"; 137 | @fa-var-code-fork: "\f126"; 138 | @fa-var-codepen: "\f1cb"; 139 | @fa-var-coffee: "\f0f4"; 140 | @fa-var-cog: "\f013"; 141 | @fa-var-cogs: "\f085"; 142 | @fa-var-columns: "\f0db"; 143 | @fa-var-comment: "\f075"; 144 | @fa-var-comment-o: "\f0e5"; 145 | @fa-var-comments: "\f086"; 146 | @fa-var-comments-o: "\f0e6"; 147 | @fa-var-compass: "\f14e"; 148 | @fa-var-compress: "\f066"; 149 | @fa-var-copy: "\f0c5"; 150 | @fa-var-copyright: "\f1f9"; 151 | @fa-var-credit-card: "\f09d"; 152 | @fa-var-crop: "\f125"; 153 | @fa-var-crosshairs: "\f05b"; 154 | @fa-var-css3: "\f13c"; 155 | @fa-var-cube: "\f1b2"; 156 | @fa-var-cubes: "\f1b3"; 157 | @fa-var-cut: "\f0c4"; 158 | @fa-var-cutlery: "\f0f5"; 159 | @fa-var-dashboard: "\f0e4"; 160 | @fa-var-database: "\f1c0"; 161 | @fa-var-dedent: "\f03b"; 162 | @fa-var-delicious: "\f1a5"; 163 | @fa-var-desktop: "\f108"; 164 | @fa-var-deviantart: "\f1bd"; 165 | @fa-var-digg: "\f1a6"; 166 | @fa-var-dollar: "\f155"; 167 | @fa-var-dot-circle-o: "\f192"; 168 | @fa-var-download: "\f019"; 169 | @fa-var-dribbble: "\f17d"; 170 | @fa-var-dropbox: "\f16b"; 171 | @fa-var-drupal: "\f1a9"; 172 | @fa-var-edit: "\f044"; 173 | @fa-var-eject: "\f052"; 174 | @fa-var-ellipsis-h: "\f141"; 175 | @fa-var-ellipsis-v: "\f142"; 176 | @fa-var-empire: "\f1d1"; 177 | @fa-var-envelope: "\f0e0"; 178 | @fa-var-envelope-o: "\f003"; 179 | @fa-var-envelope-square: "\f199"; 180 | @fa-var-eraser: "\f12d"; 181 | @fa-var-eur: "\f153"; 182 | @fa-var-euro: "\f153"; 183 | @fa-var-exchange: "\f0ec"; 184 | @fa-var-exclamation: "\f12a"; 185 | @fa-var-exclamation-circle: "\f06a"; 186 | @fa-var-exclamation-triangle: "\f071"; 187 | @fa-var-expand: "\f065"; 188 | @fa-var-external-link: "\f08e"; 189 | @fa-var-external-link-square: "\f14c"; 190 | @fa-var-eye: "\f06e"; 191 | @fa-var-eye-slash: "\f070"; 192 | @fa-var-eyedropper: "\f1fb"; 193 | @fa-var-facebook: "\f09a"; 194 | @fa-var-facebook-square: "\f082"; 195 | @fa-var-fast-backward: "\f049"; 196 | @fa-var-fast-forward: "\f050"; 197 | @fa-var-fax: "\f1ac"; 198 | @fa-var-female: "\f182"; 199 | @fa-var-fighter-jet: "\f0fb"; 200 | @fa-var-file: "\f15b"; 201 | @fa-var-file-archive-o: "\f1c6"; 202 | @fa-var-file-audio-o: "\f1c7"; 203 | @fa-var-file-code-o: "\f1c9"; 204 | @fa-var-file-excel-o: "\f1c3"; 205 | @fa-var-file-image-o: "\f1c5"; 206 | @fa-var-file-movie-o: "\f1c8"; 207 | @fa-var-file-o: "\f016"; 208 | @fa-var-file-pdf-o: "\f1c1"; 209 | @fa-var-file-photo-o: "\f1c5"; 210 | @fa-var-file-picture-o: "\f1c5"; 211 | @fa-var-file-powerpoint-o: "\f1c4"; 212 | @fa-var-file-sound-o: "\f1c7"; 213 | @fa-var-file-text: "\f15c"; 214 | @fa-var-file-text-o: "\f0f6"; 215 | @fa-var-file-video-o: "\f1c8"; 216 | @fa-var-file-word-o: "\f1c2"; 217 | @fa-var-file-zip-o: "\f1c6"; 218 | @fa-var-files-o: "\f0c5"; 219 | @fa-var-film: "\f008"; 220 | @fa-var-filter: "\f0b0"; 221 | @fa-var-fire: "\f06d"; 222 | @fa-var-fire-extinguisher: "\f134"; 223 | @fa-var-flag: "\f024"; 224 | @fa-var-flag-checkered: "\f11e"; 225 | @fa-var-flag-o: "\f11d"; 226 | @fa-var-flash: "\f0e7"; 227 | @fa-var-flask: "\f0c3"; 228 | @fa-var-flickr: "\f16e"; 229 | @fa-var-floppy-o: "\f0c7"; 230 | @fa-var-folder: "\f07b"; 231 | @fa-var-folder-o: "\f114"; 232 | @fa-var-folder-open: "\f07c"; 233 | @fa-var-folder-open-o: "\f115"; 234 | @fa-var-font: "\f031"; 235 | @fa-var-forward: "\f04e"; 236 | @fa-var-foursquare: "\f180"; 237 | @fa-var-frown-o: "\f119"; 238 | @fa-var-futbol-o: "\f1e3"; 239 | @fa-var-gamepad: "\f11b"; 240 | @fa-var-gavel: "\f0e3"; 241 | @fa-var-gbp: "\f154"; 242 | @fa-var-ge: "\f1d1"; 243 | @fa-var-gear: "\f013"; 244 | @fa-var-gears: "\f085"; 245 | @fa-var-gift: "\f06b"; 246 | @fa-var-git: "\f1d3"; 247 | @fa-var-git-square: "\f1d2"; 248 | @fa-var-github: "\f09b"; 249 | @fa-var-github-alt: "\f113"; 250 | @fa-var-github-square: "\f092"; 251 | @fa-var-gittip: "\f184"; 252 | @fa-var-glass: "\f000"; 253 | @fa-var-globe: "\f0ac"; 254 | @fa-var-google: "\f1a0"; 255 | @fa-var-google-plus: "\f0d5"; 256 | @fa-var-google-plus-square: "\f0d4"; 257 | @fa-var-google-wallet: "\f1ee"; 258 | @fa-var-graduation-cap: "\f19d"; 259 | @fa-var-group: "\f0c0"; 260 | @fa-var-h-square: "\f0fd"; 261 | @fa-var-hacker-news: "\f1d4"; 262 | @fa-var-hand-o-down: "\f0a7"; 263 | @fa-var-hand-o-left: "\f0a5"; 264 | @fa-var-hand-o-right: "\f0a4"; 265 | @fa-var-hand-o-up: "\f0a6"; 266 | @fa-var-hdd-o: "\f0a0"; 267 | @fa-var-header: "\f1dc"; 268 | @fa-var-headphones: "\f025"; 269 | @fa-var-heart: "\f004"; 270 | @fa-var-heart-o: "\f08a"; 271 | @fa-var-history: "\f1da"; 272 | @fa-var-home: "\f015"; 273 | @fa-var-hospital-o: "\f0f8"; 274 | @fa-var-html5: "\f13b"; 275 | @fa-var-ils: "\f20b"; 276 | @fa-var-image: "\f03e"; 277 | @fa-var-inbox: "\f01c"; 278 | @fa-var-indent: "\f03c"; 279 | @fa-var-info: "\f129"; 280 | @fa-var-info-circle: "\f05a"; 281 | @fa-var-inr: "\f156"; 282 | @fa-var-instagram: "\f16d"; 283 | @fa-var-institution: "\f19c"; 284 | @fa-var-ioxhost: "\f208"; 285 | @fa-var-italic: "\f033"; 286 | @fa-var-joomla: "\f1aa"; 287 | @fa-var-jpy: "\f157"; 288 | @fa-var-jsfiddle: "\f1cc"; 289 | @fa-var-key: "\f084"; 290 | @fa-var-keyboard-o: "\f11c"; 291 | @fa-var-krw: "\f159"; 292 | @fa-var-language: "\f1ab"; 293 | @fa-var-laptop: "\f109"; 294 | @fa-var-lastfm: "\f202"; 295 | @fa-var-lastfm-square: "\f203"; 296 | @fa-var-leaf: "\f06c"; 297 | @fa-var-legal: "\f0e3"; 298 | @fa-var-lemon-o: "\f094"; 299 | @fa-var-level-down: "\f149"; 300 | @fa-var-level-up: "\f148"; 301 | @fa-var-life-bouy: "\f1cd"; 302 | @fa-var-life-buoy: "\f1cd"; 303 | @fa-var-life-ring: "\f1cd"; 304 | @fa-var-life-saver: "\f1cd"; 305 | @fa-var-lightbulb-o: "\f0eb"; 306 | @fa-var-line-chart: "\f201"; 307 | @fa-var-link: "\f0c1"; 308 | @fa-var-linkedin: "\f0e1"; 309 | @fa-var-linkedin-square: "\f08c"; 310 | @fa-var-linux: "\f17c"; 311 | @fa-var-list: "\f03a"; 312 | @fa-var-list-alt: "\f022"; 313 | @fa-var-list-ol: "\f0cb"; 314 | @fa-var-list-ul: "\f0ca"; 315 | @fa-var-location-arrow: "\f124"; 316 | @fa-var-lock: "\f023"; 317 | @fa-var-long-arrow-down: "\f175"; 318 | @fa-var-long-arrow-left: "\f177"; 319 | @fa-var-long-arrow-right: "\f178"; 320 | @fa-var-long-arrow-up: "\f176"; 321 | @fa-var-magic: "\f0d0"; 322 | @fa-var-magnet: "\f076"; 323 | @fa-var-mail-forward: "\f064"; 324 | @fa-var-mail-reply: "\f112"; 325 | @fa-var-mail-reply-all: "\f122"; 326 | @fa-var-male: "\f183"; 327 | @fa-var-map-marker: "\f041"; 328 | @fa-var-maxcdn: "\f136"; 329 | @fa-var-meanpath: "\f20c"; 330 | @fa-var-medkit: "\f0fa"; 331 | @fa-var-meh-o: "\f11a"; 332 | @fa-var-microphone: "\f130"; 333 | @fa-var-microphone-slash: "\f131"; 334 | @fa-var-minus: "\f068"; 335 | @fa-var-minus-circle: "\f056"; 336 | @fa-var-minus-square: "\f146"; 337 | @fa-var-minus-square-o: "\f147"; 338 | @fa-var-mobile: "\f10b"; 339 | @fa-var-mobile-phone: "\f10b"; 340 | @fa-var-money: "\f0d6"; 341 | @fa-var-moon-o: "\f186"; 342 | @fa-var-mortar-board: "\f19d"; 343 | @fa-var-music: "\f001"; 344 | @fa-var-navicon: "\f0c9"; 345 | @fa-var-newspaper-o: "\f1ea"; 346 | @fa-var-openid: "\f19b"; 347 | @fa-var-outdent: "\f03b"; 348 | @fa-var-pagelines: "\f18c"; 349 | @fa-var-paint-brush: "\f1fc"; 350 | @fa-var-paper-plane: "\f1d8"; 351 | @fa-var-paper-plane-o: "\f1d9"; 352 | @fa-var-paperclip: "\f0c6"; 353 | @fa-var-paragraph: "\f1dd"; 354 | @fa-var-paste: "\f0ea"; 355 | @fa-var-pause: "\f04c"; 356 | @fa-var-paw: "\f1b0"; 357 | @fa-var-paypal: "\f1ed"; 358 | @fa-var-pencil: "\f040"; 359 | @fa-var-pencil-square: "\f14b"; 360 | @fa-var-pencil-square-o: "\f044"; 361 | @fa-var-phone: "\f095"; 362 | @fa-var-phone-square: "\f098"; 363 | @fa-var-photo: "\f03e"; 364 | @fa-var-picture-o: "\f03e"; 365 | @fa-var-pie-chart: "\f200"; 366 | @fa-var-pied-piper: "\f1a7"; 367 | @fa-var-pied-piper-alt: "\f1a8"; 368 | @fa-var-pinterest: "\f0d2"; 369 | @fa-var-pinterest-square: "\f0d3"; 370 | @fa-var-plane: "\f072"; 371 | @fa-var-play: "\f04b"; 372 | @fa-var-play-circle: "\f144"; 373 | @fa-var-play-circle-o: "\f01d"; 374 | @fa-var-plug: "\f1e6"; 375 | @fa-var-plus: "\f067"; 376 | @fa-var-plus-circle: "\f055"; 377 | @fa-var-plus-square: "\f0fe"; 378 | @fa-var-plus-square-o: "\f196"; 379 | @fa-var-power-off: "\f011"; 380 | @fa-var-print: "\f02f"; 381 | @fa-var-puzzle-piece: "\f12e"; 382 | @fa-var-qq: "\f1d6"; 383 | @fa-var-qrcode: "\f029"; 384 | @fa-var-question: "\f128"; 385 | @fa-var-question-circle: "\f059"; 386 | @fa-var-quote-left: "\f10d"; 387 | @fa-var-quote-right: "\f10e"; 388 | @fa-var-ra: "\f1d0"; 389 | @fa-var-random: "\f074"; 390 | @fa-var-rebel: "\f1d0"; 391 | @fa-var-recycle: "\f1b8"; 392 | @fa-var-reddit: "\f1a1"; 393 | @fa-var-reddit-square: "\f1a2"; 394 | @fa-var-refresh: "\f021"; 395 | @fa-var-remove: "\f00d"; 396 | @fa-var-renren: "\f18b"; 397 | @fa-var-reorder: "\f0c9"; 398 | @fa-var-repeat: "\f01e"; 399 | @fa-var-reply: "\f112"; 400 | @fa-var-reply-all: "\f122"; 401 | @fa-var-retweet: "\f079"; 402 | @fa-var-rmb: "\f157"; 403 | @fa-var-road: "\f018"; 404 | @fa-var-rocket: "\f135"; 405 | @fa-var-rotate-left: "\f0e2"; 406 | @fa-var-rotate-right: "\f01e"; 407 | @fa-var-rouble: "\f158"; 408 | @fa-var-rss: "\f09e"; 409 | @fa-var-rss-square: "\f143"; 410 | @fa-var-rub: "\f158"; 411 | @fa-var-ruble: "\f158"; 412 | @fa-var-rupee: "\f156"; 413 | @fa-var-save: "\f0c7"; 414 | @fa-var-scissors: "\f0c4"; 415 | @fa-var-search: "\f002"; 416 | @fa-var-search-minus: "\f010"; 417 | @fa-var-search-plus: "\f00e"; 418 | @fa-var-send: "\f1d8"; 419 | @fa-var-send-o: "\f1d9"; 420 | @fa-var-share: "\f064"; 421 | @fa-var-share-alt: "\f1e0"; 422 | @fa-var-share-alt-square: "\f1e1"; 423 | @fa-var-share-square: "\f14d"; 424 | @fa-var-share-square-o: "\f045"; 425 | @fa-var-shekel: "\f20b"; 426 | @fa-var-sheqel: "\f20b"; 427 | @fa-var-shield: "\f132"; 428 | @fa-var-shopping-cart: "\f07a"; 429 | @fa-var-sign-in: "\f090"; 430 | @fa-var-sign-out: "\f08b"; 431 | @fa-var-signal: "\f012"; 432 | @fa-var-sitemap: "\f0e8"; 433 | @fa-var-skype: "\f17e"; 434 | @fa-var-slack: "\f198"; 435 | @fa-var-sliders: "\f1de"; 436 | @fa-var-slideshare: "\f1e7"; 437 | @fa-var-smile-o: "\f118"; 438 | @fa-var-soccer-ball-o: "\f1e3"; 439 | @fa-var-sort: "\f0dc"; 440 | @fa-var-sort-alpha-asc: "\f15d"; 441 | @fa-var-sort-alpha-desc: "\f15e"; 442 | @fa-var-sort-amount-asc: "\f160"; 443 | @fa-var-sort-amount-desc: "\f161"; 444 | @fa-var-sort-asc: "\f0de"; 445 | @fa-var-sort-desc: "\f0dd"; 446 | @fa-var-sort-down: "\f0dd"; 447 | @fa-var-sort-numeric-asc: "\f162"; 448 | @fa-var-sort-numeric-desc: "\f163"; 449 | @fa-var-sort-up: "\f0de"; 450 | @fa-var-soundcloud: "\f1be"; 451 | @fa-var-space-shuttle: "\f197"; 452 | @fa-var-spinner: "\f110"; 453 | @fa-var-spoon: "\f1b1"; 454 | @fa-var-spotify: "\f1bc"; 455 | @fa-var-square: "\f0c8"; 456 | @fa-var-square-o: "\f096"; 457 | @fa-var-stack-exchange: "\f18d"; 458 | @fa-var-stack-overflow: "\f16c"; 459 | @fa-var-star: "\f005"; 460 | @fa-var-star-half: "\f089"; 461 | @fa-var-star-half-empty: "\f123"; 462 | @fa-var-star-half-full: "\f123"; 463 | @fa-var-star-half-o: "\f123"; 464 | @fa-var-star-o: "\f006"; 465 | @fa-var-steam: "\f1b6"; 466 | @fa-var-steam-square: "\f1b7"; 467 | @fa-var-step-backward: "\f048"; 468 | @fa-var-step-forward: "\f051"; 469 | @fa-var-stethoscope: "\f0f1"; 470 | @fa-var-stop: "\f04d"; 471 | @fa-var-strikethrough: "\f0cc"; 472 | @fa-var-stumbleupon: "\f1a4"; 473 | @fa-var-stumbleupon-circle: "\f1a3"; 474 | @fa-var-subscript: "\f12c"; 475 | @fa-var-suitcase: "\f0f2"; 476 | @fa-var-sun-o: "\f185"; 477 | @fa-var-superscript: "\f12b"; 478 | @fa-var-support: "\f1cd"; 479 | @fa-var-table: "\f0ce"; 480 | @fa-var-tablet: "\f10a"; 481 | @fa-var-tachometer: "\f0e4"; 482 | @fa-var-tag: "\f02b"; 483 | @fa-var-tags: "\f02c"; 484 | @fa-var-tasks: "\f0ae"; 485 | @fa-var-taxi: "\f1ba"; 486 | @fa-var-tencent-weibo: "\f1d5"; 487 | @fa-var-terminal: "\f120"; 488 | @fa-var-text-height: "\f034"; 489 | @fa-var-text-width: "\f035"; 490 | @fa-var-th: "\f00a"; 491 | @fa-var-th-large: "\f009"; 492 | @fa-var-th-list: "\f00b"; 493 | @fa-var-thumb-tack: "\f08d"; 494 | @fa-var-thumbs-down: "\f165"; 495 | @fa-var-thumbs-o-down: "\f088"; 496 | @fa-var-thumbs-o-up: "\f087"; 497 | @fa-var-thumbs-up: "\f164"; 498 | @fa-var-ticket: "\f145"; 499 | @fa-var-times: "\f00d"; 500 | @fa-var-times-circle: "\f057"; 501 | @fa-var-times-circle-o: "\f05c"; 502 | @fa-var-tint: "\f043"; 503 | @fa-var-toggle-down: "\f150"; 504 | @fa-var-toggle-left: "\f191"; 505 | @fa-var-toggle-off: "\f204"; 506 | @fa-var-toggle-on: "\f205"; 507 | @fa-var-toggle-right: "\f152"; 508 | @fa-var-toggle-up: "\f151"; 509 | @fa-var-trash: "\f1f8"; 510 | @fa-var-trash-o: "\f014"; 511 | @fa-var-tree: "\f1bb"; 512 | @fa-var-trello: "\f181"; 513 | @fa-var-trophy: "\f091"; 514 | @fa-var-truck: "\f0d1"; 515 | @fa-var-try: "\f195"; 516 | @fa-var-tty: "\f1e4"; 517 | @fa-var-tumblr: "\f173"; 518 | @fa-var-tumblr-square: "\f174"; 519 | @fa-var-turkish-lira: "\f195"; 520 | @fa-var-twitch: "\f1e8"; 521 | @fa-var-twitter: "\f099"; 522 | @fa-var-twitter-square: "\f081"; 523 | @fa-var-umbrella: "\f0e9"; 524 | @fa-var-underline: "\f0cd"; 525 | @fa-var-undo: "\f0e2"; 526 | @fa-var-university: "\f19c"; 527 | @fa-var-unlink: "\f127"; 528 | @fa-var-unlock: "\f09c"; 529 | @fa-var-unlock-alt: "\f13e"; 530 | @fa-var-unsorted: "\f0dc"; 531 | @fa-var-upload: "\f093"; 532 | @fa-var-usd: "\f155"; 533 | @fa-var-user: "\f007"; 534 | @fa-var-user-md: "\f0f0"; 535 | @fa-var-users: "\f0c0"; 536 | @fa-var-video-camera: "\f03d"; 537 | @fa-var-vimeo-square: "\f194"; 538 | @fa-var-vine: "\f1ca"; 539 | @fa-var-vk: "\f189"; 540 | @fa-var-volume-down: "\f027"; 541 | @fa-var-volume-off: "\f026"; 542 | @fa-var-volume-up: "\f028"; 543 | @fa-var-warning: "\f071"; 544 | @fa-var-wechat: "\f1d7"; 545 | @fa-var-weibo: "\f18a"; 546 | @fa-var-weixin: "\f1d7"; 547 | @fa-var-wheelchair: "\f193"; 548 | @fa-var-wifi: "\f1eb"; 549 | @fa-var-windows: "\f17a"; 550 | @fa-var-won: "\f159"; 551 | @fa-var-wordpress: "\f19a"; 552 | @fa-var-wrench: "\f0ad"; 553 | @fa-var-xing: "\f168"; 554 | @fa-var-xing-square: "\f169"; 555 | @fa-var-yahoo: "\f19e"; 556 | @fa-var-yelp: "\f1e9"; 557 | @fa-var-yen: "\f157"; 558 | @fa-var-youtube: "\f167"; 559 | @fa-var-youtube-play: "\f16a"; 560 | @fa-var-youtube-square: "\f166"; 561 | 562 | -------------------------------------------------------------------------------- /font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal 14px/1 FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | } 12 | -------------------------------------------------------------------------------- /font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /font-awesome/scss/_mixins.scss: -------------------------------------------------------------------------------- 1 | // Mixins 2 | // -------------------------- 3 | 4 | @mixin fa-icon() { 5 | display: inline-block; 6 | font: normal normal normal 14px/1 FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | } 12 | 13 | @mixin fa-icon-rotate($degrees, $rotation) { 14 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}); 15 | -webkit-transform: rotate($degrees); 16 | -ms-transform: rotate($degrees); 17 | transform: rotate($degrees); 18 | } 19 | 20 | @mixin fa-icon-flip($horiz, $vert, $rotation) { 21 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}); 22 | -webkit-transform: scale($horiz, $vert); 23 | -ms-transform: scale($horiz, $vert); 24 | transform: scale($horiz, $vert); 25 | } 26 | -------------------------------------------------------------------------------- /font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); 7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), 8 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), 9 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), 10 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); 11 | //src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 12 | font-weight: normal; 13 | font-style: normal; 14 | } 15 | -------------------------------------------------------------------------------- /font-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .#{$fa-css-prefix}-rotate-90, 15 | :root .#{$fa-css-prefix}-rotate-180, 16 | :root .#{$fa-css-prefix}-rotate-270, 17 | :root .#{$fa-css-prefix}-flip-horizontal, 18 | :root .#{$fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /font-awesome/scss/_spinning.scss: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | @-webkit-keyframes fa-spin { 10 | 0% { 11 | -webkit-transform: rotate(0deg); 12 | transform: rotate(0deg); 13 | } 14 | 100% { 15 | -webkit-transform: rotate(359deg); 16 | transform: rotate(359deg); 17 | } 18 | } 19 | 20 | @keyframes fa-spin { 21 | 0% { 22 | -webkit-transform: rotate(0deg); 23 | transform: rotate(0deg); 24 | } 25 | 100% { 26 | -webkit-transform: rotate(359deg); 27 | transform: rotate(359deg); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "spinning"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /footadmin.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 |
6 | 7 |
8 |
9 |
10 | 11 |
12 | 13 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /guestdetails.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | 13 |
14 |
15 |
27 |
28 | × 29 | Success! Guest Details has been deleted. 30 |
"; 31 | } else { 32 | //error message if SQL query fails 33 | echo "
Guest Details Updation Faliure. Try Again
Error Details: " . $sql . "
" . mysqli_error($connect); 34 | } 35 | //close the connection 36 | mysqli_close($connect); 37 | } 38 | ?> 39 |
40 | 41 | 42 |
43 |
44 | 45 | Guest Details"; 50 | echo " 51 | 52 | 53 | 54 | 55 | 56 | "; 57 | while($row=mysqli_fetch_array($result)) 58 | { ?> 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 |
Guest Email idGuest NameEditDelete
69 |
70 |
71 | -------------------------------------------------------------------------------- /images/14522157584_a67ab2e898_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/images/14522157584_a67ab2e898_o.png -------------------------------------------------------------------------------- /images/1900x10801.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/images/1900x10801.png -------------------------------------------------------------------------------- /images/1900x10802.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/images/1900x10802.png -------------------------------------------------------------------------------- /images/1900x10803.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/images/1900x10803.png -------------------------------------------------------------------------------- /images/3271.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/images/3271.jpg -------------------------------------------------------------------------------- /images/687474703a2f2f707265636973696f6e2d736f6674776172652e636f6d2f77702d636f6e74656e742f75706c6f6164732f323031342f30342f6a5175726572792e676966.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/images/687474703a2f2f707265636973696f6e2d736f6674776172652e636f6d2f77702d636f6e74656e742f75706c6f6164732f323031342f30342f6a5175726572792e676966.gif -------------------------------------------------------------------------------- /images/7fb1f193435815a86c8484f82b9589e1 - Copy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/images/7fb1f193435815a86c8484f82b9589e1 - Copy.jpg -------------------------------------------------------------------------------- /images/7fb1f193435815a86c8484f82b9589e1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/images/7fb1f193435815a86c8484f82b9589e1.jpg -------------------------------------------------------------------------------- /images/Hopeful_student_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/images/Hopeful_student_1.jpg -------------------------------------------------------------------------------- /images/Javascript-shopping-cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/images/Javascript-shopping-cart.png -------------------------------------------------------------------------------- /images/Returning-Student.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/images/Returning-Student.jpg -------------------------------------------------------------------------------- /images/apache_webserver_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/images/apache_webserver_logo.png -------------------------------------------------------------------------------- /images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/images/favicon.ico -------------------------------------------------------------------------------- /images/favicon2-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/images/favicon2-1.jpg -------------------------------------------------------------------------------- /images/happy_student4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/images/happy_student4.jpg -------------------------------------------------------------------------------- /images/library_guy_900x400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/images/library_guy_900x400.jpg -------------------------------------------------------------------------------- /images/maxresdefault.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/images/maxresdefault.jpg -------------------------------------------------------------------------------- /images/new/20160518144520.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/images/new/20160518144520.jpg -------------------------------------------------------------------------------- /images/new/253f9ac.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/images/new/253f9ac.jpg -------------------------------------------------------------------------------- /images/new/Lærer-studerende-på-UCN.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/images/new/Lærer-studerende-på-UCN.jpg -------------------------------------------------------------------------------- /images/new/sif10225.225782846266003821356.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/images/new/sif10225.225782846266003821356.jpg -------------------------------------------------------------------------------- /images/new/teacher2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/images/new/teacher2.jpg -------------------------------------------------------------------------------- /images/new/teacher222223.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/images/new/teacher222223.jpg -------------------------------------------------------------------------------- /images/new/young_woman_with_laptop_english_teacher_visual_stage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/images/new/young_woman_with_laptop_english_teacher_visual_stage.jpg -------------------------------------------------------------------------------- /images/photothumb.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/images/photothumb.db -------------------------------------------------------------------------------- /images/smilingFemaleStudent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/images/smilingFemaleStudent.jpg -------------------------------------------------------------------------------- /images/welcome46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathurvishal/CloudClassroom-PHP-Project/5dadec098bfbbf3300d60c3494db3fb95b66e7be/images/welcome46.jpg -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 42 | 43 | 44 |
45 | 46 | 47 |
48 |
49 |

50 | Welcome to CLOUD CLASSROOMS 51 |

52 | 53 |
54 |
55 |
56 |
57 |

About Us

58 |
59 |
60 |
    61 |
  • 62 |

    The “Cloud Classrooms” Website (web based application) is useful for the 63 | students, faculty, guest whomever likes to learn from web using E-Learn 64 | (Videos), as well Check result, schedules of assessment and all that task like 65 | event, news, students can find out list of fresh courses offered by them and 66 | admission procedure, discussion forum, fee structure etc. without going to 67 | institute. It provides the facility to the students or guest to have complete 68 | information about the institute. 69 |

    70 |
  • 71 | 72 |
73 | 74 | Learn More 75 |
76 |
77 |
78 |
79 |
80 |
81 |

Objectives

82 |
83 |
84 |

85 |

    86 |
  • Keep records of all Students, Faculty, Admin & Guest.
  • 87 |
  • To make the institute truly a paperless institute.
  • 88 |
  • To learn from by watching videos (e-learn). 89 |
  • 90 |
  • To make the institute truly a Cloud Based Institute. 91 |
  • 92 |
  • For reducing manual work and mental conflict.
  • 93 | 94 |
95 |

96 | Learn More 97 |
98 |
99 |
100 |
101 |
102 |
103 |

Project Category & Technology Used

104 |
105 |
106 |

107 |

    108 |
  • RDBMS (Relational Database Management System)
  • 109 |
  • BOOTSTRAP
  • 110 |
  • APACHE SERVER
  • 111 |
  • PHP
  • 112 |
  • MYSQL
  • 113 |
114 |

115 | Learn More 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 |

The CLOUD CLASSROOMS by VISHAL MATHUR 146891645 includes:

173 |
    174 |
  • Bootstrap v3.3.7 175 |
  • 176 |
  • jQuery v1.11.1
  • 177 |
  • Font Awesome v4.2.0
  • 178 |
  • Working PHP with validation
  • 179 |
  • Unstyled page elements for easy customization
  • 180 |
  • 65 PHP pages
  • 181 |
182 | 183 |
184 |
185 | 186 |
187 |
188 | 189 | 190 | 191 |
192 | 193 | 194 | -------------------------------------------------------------------------------- /js/contact_me.js: -------------------------------------------------------------------------------- 1 | /* 2 | Jquery Validation using jqBootstrapValidation 3 | example is taken from jqBootstrapValidation docs 4 | */ 5 | $(function() { 6 | 7 | $("#contactForm input,#contactForm textarea").jqBootstrapValidation({ 8 | preventSubmit: true, 9 | submitError: function($form, event, errors) { 10 | // something to have when submit produces an error ? 11 | // Not decided if I need it yet 12 | }, 13 | submitSuccess: function($form, event) { 14 | event.preventDefault(); // prevent default submit behaviour 15 | // get values from FORM 16 | var name = $("input#name").val(); 17 | var phone = $("input#phone").val(); 18 | var email = $("input#email").val(); 19 | var message = $("textarea#message").val(); 20 | var firstName = name; // For Success/Failure Message 21 | // Check for white space in name for Success/Fail message 22 | if (firstName.indexOf(' ') >= 0) { 23 | firstName = name.split(' ').slice(0, -1).join(' '); 24 | } 25 | $.ajax({ 26 | url: "./bin/contact_me.php", 27 | type: "POST", 28 | data: { 29 | name: name, 30 | phone: phone, 31 | email: email, 32 | message: message 33 | }, 34 | cache: false, 35 | success: function() { 36 | // Success message 37 | $('#success').html("
"); 38 | $('#success > .alert-success').html(""); 40 | $('#success > .alert-success') 41 | .append("Your message has been sent. "); 42 | $('#success > .alert-success') 43 | .append('
'); 44 | 45 | //clear all fields 46 | $('#contactForm').trigger("reset"); 47 | }, 48 | error: function() { 49 | // Fail message 50 | $('#success').html("
"); 51 | $('#success > .alert-danger').html(""); 53 | $('#success > .alert-danger').append("Sorry " + firstName + " it seems that my mail server is not responding... Could you please email me directly to .alert-danger').append('
'); 55 | //clear all fields 56 | $('#contactForm').trigger("reset"); 57 | }, 58 | }) 59 | }, 60 | filter: function() { 61 | return $(this).is(":visible"); 62 | }, 63 | }); 64 | 65 | $("a[data-toggle=\"tab\"]").click(function(e) { 66 | e.preventDefault(); 67 | $(this).tab("show"); 68 | }); 69 | }); 70 | 71 | 72 | /*When clicking on Full hide fail/success boxes */ 73 | $('#name').focus(function() { 74 | $('#success').html(''); 75 | }); 76 | -------------------------------------------------------------------------------- /loginlinkadmin.php: -------------------------------------------------------------------------------- 1 | 4 | num_rows > 0 ) { 16 | if ( $row = $result->fetch_assoc() ) { 17 | $_SESSION[ "umail" ] = $row[ "Aid" ]; 18 | 19 | } 20 | //redirecting to welcome admin page 21 | header( 'Location:welcomeadmin.php' ); 22 | } else { 23 | //error message if SQL query fails 24 | echo "

Invalid Admin ID & Password. Page Will redirect to Login Page after 3 seconds

"; 25 | header( "refresh:3;url=Adminlogin.php" ); 26 | 27 | } 28 | $connect->close(); 29 | ?> -------------------------------------------------------------------------------- /loginlinkfaculty.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | num_rows > 0 ) 16 | 17 | //session create 18 | { 19 | if ( $row = $result->fetch_assoc() ) { 20 | $_SESSION[ "fidx" ] = $row[ "FID" ]; 21 | $_SESSION[ "fname" ] = $row[ "FName" ]; 22 | 23 | } 24 | //redirecting to welcome faculty page 25 | header( 'Location:welcomefaculty.php' ); 26 | } else { 27 | //error message if SQL query fails 28 | echo "

Invalid Faculty ID & Password. Page Will redirect to Login Page after 3 seconds

"; 29 | header( "refresh:3;url=facultylogin.php" ); 30 | } 31 | $connect->close(); 32 | 33 | ?> -------------------------------------------------------------------------------- /loginlinkstudent.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | num_rows > 0 ) 16 | 17 | //session create 18 | { 19 | if ( $row = $result->fetch_assoc() ) { 20 | $_SESSION[ "sidx" ] = $row[ "Eid" ]; 21 | $_SESSION[ "fname" ] = $row[ "FName" ]; 22 | $_SESSION[ "lname" ] = $row[ "LName" ]; 23 | $_SESSION[ "seno" ] = $row[ "Eno" ]; 24 | 25 | } //redirecting to welcome student page 26 | header( 'Location:welcomestudent.php' ); 27 | 28 | } else { 29 | //error message if SQL query fails 30 | echo "

Invalid Student ID & Password. Page Will redirect to Login Page after 2 seconds

"; 31 | header( "refresh:3;url=studentlogin.php" ); 32 | } 33 | //close the connection 34 | $connect->close(); 35 | 36 | ?> -------------------------------------------------------------------------------- /logoutadmin.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /logoutfaculty.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /logoutstudent.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /makeresult.php: -------------------------------------------------------------------------------- 1 | 12 | 13 |
14 |
15 |
16 | 17 |

Welcome Faculty :

18 | 19 | 27 |
28 | Make Result 29 |
30 | 31 | 32 | 33 | 35 | 38 | 39 | 40 | 41 | 42 | 45 | 46 | 47 | 48 | 56 | 57 | 59 | 62 |
73 |
74 | × 75 | Success! Result Updated. 76 |
77 | "; 78 | } else { 79 | //error message if SQL query fails 80 | echo "
Result Updation Faliure. Try Again
Error Details: " . $sql . "
" . mysqli_error($connect); 81 | 82 | //close the connection 83 | mysqli_close($connect); 84 | } 85 | } 86 | ?> 87 |
Enrolment number 34 | 36 | 37 |
Exam ID: 43 | 44 |
Marks 49 | 55 |
58 |
88 |
89 |
90 |
91 |
92 | -------------------------------------------------------------------------------- /manageassessment.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 |
14 |
15 |

Welcome Faculty :

16 | 17 |
27 |
28 | × 29 | Success! Assessment details deleted. 30 |
31 | "; 32 | } else { 33 | //error message if SQL query fails 34 | echo "
Assessment Details Updation Faliure. Try Again
Error Details: " . $sql . "
" . mysqli_error( $connect ); 35 | } 36 | } 37 | //close the connection 38 | mysqli_close( $connect ); 39 | ?> 40 | 41 | Assessment Details"; 47 | echo " 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | "; 59 | while($row=mysqli_fetch_array($rs)) 60 | { 61 | ?> 62 | 63 | 66 | 69 | 72 | 75 | 78 | 81 | 84 | 85 | 88 | 89 | 90 | 93 |
IDNameQ1Q2Q3Q4Q5DeleteEdit
64 | 65 | 67 | 68 | 70 | 71 | 73 | 74 | 76 | 77 | 79 | 80 | 82 | 83 | 86 | 87 |
94 | 95 |
96 |
97 | -------------------------------------------------------------------------------- /manageassessment2.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 |
14 |
15 | 16 |

Welcome Faculty :

17 | 18 | 26 |
27 | Edit Assessment 28 |
29 | 30 | 31 | 32 | 34 | 37 | 38 | 39 | 40 | 42 | 45 | 46 | 47 | 48 | 50 | 53 | 54 | 55 | 57 | 60 | 61 | 62 | 64 | 67 | 68 | 69 | 71 | 74 | 75 | 76 | 78 | 81 | 82 | 83 | 85 | 88 |
105 |
106 | × 107 | Success! Assessment Updated. 108 |
109 | "; 110 | } else { 111 | //error message if SQL query fails 112 | echo "
Assessment Updation Faliure. Try Again
Error Details: " . $sql . "
" . mysqli_error($connect); 113 | 114 | //close the connection 115 | mysqli_close($connect); 116 | } 117 | } 118 | ?> 119 |
Exam ID 33 | 35 | 36 |
Exam Name 41 | 43 | 44 |
Q1 49 | 51 | 52 |
Q2 56 | 58 | 59 |
Q3 63 | 65 | 66 |
Q4 70 | 72 | 73 |
Q5 77 | 79 | 80 |
84 |
120 |
121 |
122 |
123 |
124 | -------------------------------------------------------------------------------- /managevideos.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 |
14 |
15 |

Welcome Faculty :

16 | 17 |
27 |
28 | × 29 | Success! Videos details deleted. 30 |
31 | "; 32 | } else { 33 | //error message if SQL query fails 34 | echo "
Videos Details Updation Faliure. Try Again
Error Details: " . $sql . "
" . mysqli_error( $connect ); 35 | } 36 | } 37 | //close the connection 38 | mysqli_close( $connect ); 39 | ?> 40 | 41 | Videos Details"; 47 | echo " 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | "; 56 | while( $row = mysqli_fetch_array($rs) ) 57 | { 58 | ?> 59 | 60 | 63 | 66 | 69 | 72 | 73 | 76 | 77 | 78 | 81 |
IDVideo TitleVideo URLDescriptionDeleteEdit
61 | 62 | 64 | 65 | 67 | 68 | 70 | 71 | 74 | 75 |
82 | 83 |
84 |
85 | -------------------------------------------------------------------------------- /managevideos2.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 |
14 |
15 | 16 |

Welcome Faculty :

17 | 18 | 26 |
27 | Update Videos 28 |
29 | 30 | 31 | 32 | 34 | 37 | 38 | 39 | 40 | 42 | 45 | 46 | 47 | 48 | 50 | 53 | 54 | 55 | 57 | 60 | 61 | 63 | 66 |
80 |
81 | × 82 | Success! Videos Updated. 83 |
84 | "; 85 | } else { 86 | //error message if SQL query fails 87 | echo "
Video Updation Faliure. Try Again
Error Details: " . $sql . "
" . mysqli_error($connect); 88 | 89 | //close the connection 90 | mysqli_close($connect); 91 | } 92 | } 93 | ?> 94 |
Video ID 33 | 35 | 36 |
Video Title 41 | 43 | 44 |
Video URL 49 | 51 | 52 |
Video Description 56 | 58 | 59 |
62 |
95 |
96 |
97 |
98 |
99 | -------------------------------------------------------------------------------- /mydetailsfaculty.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 |
14 |
15 | 16 |

Welcome Faculty :

17 | 26 |
27 | My Details 28 |
29 | 30 | 31 | 32 | 34 | 37 | 38 | 39 | 40 | 41 | 44 | 45 | 46 | 47 | 48 | 51 | 52 | 53 | 55 | 57 | 58 | 59 | 61 | 64 | 65 | 66 | 68 | 71 | 72 | 73 | 75 | 78 | 79 | 80 | 82 | 84 | 85 | 86 | 87 | 90 | 91 | 92 | 93 | 94 | 95 |
ID : 33 | 35 | 36 |
Name : 42 | 43 |
Father Name : 49 | 50 |
Address : 54 | 56 |
Gender : 60 | 62 | 63 |
Data Of Joining : 67 | 69 | 70 |
City : 74 | 76 | 77 |
Phone Number : 81 | 83 |
Password : 88 | 89 |
96 |
97 |
98 | 101 |
102 |
103 | -------------------------------------------------------------------------------- /mydetailsstudent.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 | 15 | 16 |
17 |
18 |
19 | 20 |

Welcome ".$userfname." ".$userlname."";?>

21 | 30 |
31 | My Details 32 |
33 | 34 | 35 | 36 | 38 | 41 | 42 | 43 | 44 | 45 | 48 | 49 | 50 | 51 | 54 | 55 | 56 | 57 | 60 | 61 | 62 | 64 | 66 | 67 | 68 | 70 | 73 | 74 | 75 | 77 | 80 | 81 | 82 | 83 | 86 | 87 | 88 | 90 | 92 | 93 | 94 | 96 | 99 | 100 | 101 | 102 | 105 | 106 | 107 | 108 | 109 | 110 |
Enrolment number : 37 | 39 | 40 |
First Name : 46 | 47 |
Last Name : 52 | 53 |
Father Name : 58 | 59 |
Address : 63 | 65 |
Gender : 69 | 71 | 72 |
Course : 76 | 78 | 79 |
D.O.B. : 84 | 85 |
Phone Number : 89 | 91 |
Email : 95 | 97 | 98 |
Password : 103 | 104 |
111 |
112 |
113 | 116 |
117 |
118 | -------------------------------------------------------------------------------- /postquerypublic.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | 23 |
24 |
25 |

Welcome Guest

26 |
27 |
28 | 29 |

Post Query Details

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 | 68 |

69 |
70 | × 71 | Success! Your Query Added Successfully. Reff. No: " . mysqli_insert_id( $connect ) . " 72 |
"; 73 | } else { 74 | //error message if SQL query fails 75 | echo "
Query Addeding Faliure. Try Again
Error Details: " . $sql . "
" . mysqli_error( $connect ); 76 | } 77 | //close the connection 78 | mysqli_close( $connect ); 79 | } 80 | ?> 81 |
82 |
83 | -------------------------------------------------------------------------------- /qureydetails.php: -------------------------------------------------------------------------------- 1 | 10 | 11 |
12 |
13 |
22 |
23 | × 24 | Success! Query Details has been deleted. 25 |
"; 26 | } else { 27 | echo "
Query Details Updation Faliure. Try Again
Error Details: " . $sql . "
" . mysqli_error( $connect ); 28 | } 29 | mysqli_close( $connect ); 30 | } 31 | ?> 32 |
33 |
34 |
35 |

Welcome Faculty :

36 | Query Details"; 42 | echo " 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | "; 51 | while ( $row = mysqli_fetch_array( $result ) ) { 52 | ?> 53 | 54 | 57 | 60 | 63 | 66 | 68 | 70 | 71 | 72 |
Query idEmail idQueryAnswerEditDelete
55 | 56 | 58 | 59 | 61 | 62 | 64 | 65 | 67 | 69 |
73 |
74 |
75 | -------------------------------------------------------------------------------- /registrationform.php: -------------------------------------------------------------------------------- 1 | 2 | 59 | 60 |
61 |
62 | 78 |
79 | × 80 |

Register Successfully Complete. Now You Can Login With Your Email & Password

82 |
83 |
84 | 85 | "; 86 | 87 | $sql = "INSERT INTO `studenttable` (`FName`, `LName`, `FaName`, `DOB`, `Addrs`, `Gender`, `PhNo`, `Eid`, `Pass`,`Course`) VALUES ('$fname','$lname','$faname','$dob','$addrs','$gender','$phno','$email','$pass','$course')"; 88 | //close the connection 89 | mysqli_query( $connect, $sql ); 90 | 91 | echo $done; 92 | } 93 | 94 | ?> 95 | 96 |
97 |
98 |
99 |
100 |
101 | 102 |

Registration Form

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 | 159 | 160 | 161 | 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 | *Max 30 192 |

193 |
194 |
195 | 196 | 197 | 198 | 199 | 200 |
201 |
202 |
203 |
204 |
205 | -------------------------------------------------------------------------------- /resultdetails.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 |
14 |
23 |
24 | × 25 | Success! Result details deleted. 26 |
27 | "; 28 | } else { 29 | //error message if SQL query fails 30 | echo "
Result Details Deletion Faliure. Try Again
Error Details: " . $sql . "
" . mysqli_error( $connect ); 31 | } 32 | } 33 | 34 | mysqli_close( $connect ); 35 | ?> 36 |
37 |
38 |
39 |

Welcome Faculty :

40 | 41 | Result Details"; 47 | echo " 48 | 49 | 50 | 51 | 52 | 53 | 54 | "; 55 | while($row=mysqli_fetch_array($rs)) 56 | { 57 | ?> 58 | 59 | 62 | 65 | 68 | 70 | 72 | 73 | 74 | 77 | 78 | 79 | 80 |
Result IDEnrolment NumberMarksEditDelete
60 | 61 | 63 | 64 | 66 | 67 | 69 | 71 |
81 |
82 | 83 |
84 | 85 | -------------------------------------------------------------------------------- /studentdetails.php: -------------------------------------------------------------------------------- 1 | 10 | 11 |
12 |
13 |
22 |
23 | × 24 | Success! Student details deleted. 25 |
26 | "; 27 | } else { 28 | echo "
Student Updation Faliure. Try Again
Error Details: " . $sql . "
" . mysqli_error( $connect ); 29 | } 30 | } 31 | mysqli_close( $connect ); 32 | ?> 33 |
34 |
35 |
36 | 37 | Student Details"; 42 | //below will print all student details to admin 43 | echo " 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | "; 59 | while ( $row = mysqli_fetch_array( $result ) ) { 60 | ?> 61 | 62 | 63 | 66 | 69 | 72 | 75 | 78 | 81 | 84 | 87 | 90 | 93 | 96 | 98 | 100 | 101 | 102 |
Enrolment NumberFirst NameLast NameFather NameAddressGenderCourseDOBPhone NumberEmailPasswordEditDelete
64 | 65 | 67 | 68 | 70 | 71 | 73 | 74 | 76 | 77 | 79 | 80 | 82 | 83 | 85 | 86 | 88 | 89 | 91 | 92 | 94 | 95 | 97 | 99 |
103 | 104 |
105 |
106 | -------------------------------------------------------------------------------- /studenthead.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | Cloud Classrooms 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 28 | 29 | 30 | 31 | 32 | 33 |
34 | 35 | 69 |
-------------------------------------------------------------------------------- /studentlogin.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 | 6 |
7 | 8 |

  Student Login

9 |
10 |
11 |
12 |
13 | 14 | 15 |

16 |
17 |
18 |
19 |
20 | 21 | 22 |

23 |
24 |
25 |
26 | 27 | 30 |
31 |
32 | 33 |
34 |
35 | -------------------------------------------------------------------------------- /takeassessment.php: -------------------------------------------------------------------------------- 1 | 12 | 13 |
14 |
15 |
16 |

Welcome ".$userfname." ".$userlname."";?>

17 | Take Assessment"; 25 | echo " 26 | 27 | 28 | 29 | 30 | "; 31 | while($row=mysqli_fetch_array($rs)) 32 | { 33 | ?> 34 | 35 | 38 | 41 | 44 | 45 | 48 |
Exam IDExam NameTake
36 | 37 | 39 | 40 | 42 | 43 |
49 | 50 |
51 |
52 | -------------------------------------------------------------------------------- /takeassessment2.php: -------------------------------------------------------------------------------- 1 | 12 | 13 |
14 |
15 |
16 | 17 |

Welcome ".$userfname." ".$userlname."";?>

18 | 29 | 30 |
31 | Assessment Details 32 |
33 |
34 | 35 | 36 | 38 | 42 | 43 | 44 | 46 | 50 | 51 |
Enrolment number : 37 | 39 | 41 |
Name : 45 | 47 | 49 |
52 |
53 | 54 |
55 | 56 | 57 | 59 | 62 | 63 | 64 | 66 | 69 | 70 |
Course : 58 | 60 | 61 |
Applied For : 65 | 67 |
68 |
71 |
72 |
73 |
74 |
75 | 77 |
78 |

Answer The Following Questions..

79 | 80 |
81 |
82 |

Q1.

83 |
84 |
85 |
86 |
87 |

Q2.

88 |
89 |
90 |
91 |
92 |

Q3.

93 |
94 |
95 |
96 |
97 |

Q4.

98 |
99 |
100 |
101 |
102 |

Q5.

103 |
104 |
105 |
106 | 107 | 110 | 111 |

112 | 113 |
114 | 115 |
116 |
117 | 131 |

132 |
133 | × 134 | Success! Assessment Have Submited. 135 |
"; 136 | } else { 137 | //error message if SQL query fails 138 | echo "
Assessment Submitting Faliure. Try Again
Error Details: " . $sql . "
" . mysqli_error( $connect ); 139 | } //close the connection 140 | mysqli_close( $connect ); 141 | } 142 | ?> 143 |
144 |
145 | -------------------------------------------------------------------------------- /updatedetailsfromfaculty.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 |
14 |
15 | 16 |

Welcome Faculty :

17 | 27 |
28 |
29 | Faculty ID :
30 |
31 | Faculty Name :
32 |
33 | Father Name :
34 |
35 | Address :
36 |
37 | Gender :
38 |
39 | Phone Number :
40 |
41 | Joining Date :
42 |
43 | City :
44 |
45 | Password :

46 |
47 |
48 | 49 |
50 | 53 | 54 | 69 | 70 |

71 |
72 | × 73 | Success! Faculty Details updated has been deleted. 74 |
"; 75 | } else { 76 | // below statement will print error 77 | echo "
Faculty Details Updating Faliure. Try Again
Error Details: " . $sql . "
" . mysqli_error($connect); 78 | } 79 | //for close connection 80 | mysqli_close($connect); 81 | } 82 | ?> 83 |
84 |
85 | -------------------------------------------------------------------------------- /updatedetailsfromstudent.php: -------------------------------------------------------------------------------- 1 | 12 | 13 |
14 |
15 |
16 |

Welcome ".$userfname." ".$userlname."";?>

17 | 26 |
27 | 28 |
29 | Enrolment number : 30 |
31 |
32 | First Name : 33 |
34 |
35 | Last Name :
36 |
37 |
38 | Father Name :
39 |
40 |
41 | Addres :
42 |
43 |
44 | Gender :
45 |
46 |
47 | Course :
48 |
49 |
50 | D.O.B. :
51 |
52 |
53 | Phone Number :
54 |
55 |
56 | Email :
57 |
58 |
59 | Password :
60 |

61 |
62 | 63 | 64 |
65 |
66 | 69 | 70 |
91 |
92 | × 93 | Success! Student Details has been updated. 94 |
95 | 96 | "; 97 | } else { 98 | //below statement will print error if SQL query fail. 99 | echo "
Student Updation Faliure. Try Again
Error Details: " . $sql . "
" . mysqli_error( $connect ); 100 | } 101 | //for close connection 102 | mysqli_close( $connect ); 103 | 104 | } 105 | ?> 106 |
107 |
108 | -------------------------------------------------------------------------------- /updatefaculty.php: -------------------------------------------------------------------------------- 1 | 11 |
12 |
13 |
14 | 15 | 25 |
26 |
27 | Faculty ID :
28 |
29 | Faculty Name :
30 |
31 | Father Name :
32 |
33 | Address :
34 |
35 | Gender :
36 |
37 | Phone Number :
38 |
39 | Joining Date :
40 |
41 | City :
42 |
43 | Password :

44 |
45 |
46 | 47 |
48 | 51 | 52 | 67 | 68 |

69 |
70 | × 71 | Success! Faculty Details updated has been deleted. 72 |
"; 73 | } else { 74 | // below statement will print error 75 | echo "
Faculty Details Updating Faliure. Try Again
Error Details: " . $sql . "
" . mysqli_error($connect); 76 | } 77 | //for close connection 78 | mysqli_close($connect); 79 | } 80 | ?> 81 |
82 |
83 | -------------------------------------------------------------------------------- /updateguest.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 |
13 |
14 |
15 | 16 | 23 |
24 |
25 | Guest Email ID : 26 | 27 |
28 |
29 | Guest Name : 30 |
31 |
32 | 33 |
34 |
35 | 38 | 45 |

46 |
47 | × 48 | Success! Guest updated has been deleted. 49 |
"; 50 | } else { 51 | // below statement will print error if SQL query fail. 52 | echo "
Guest Details Updating Faliure. Try Again
Error Details: " . $sql . "
" . mysqli_error( $connect ); 53 | } 54 | //for close connection 55 | mysqli_close( $connect ); 56 | } 57 | ?> 58 |
59 |
60 | -------------------------------------------------------------------------------- /updatequery.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | 13 |
14 |
15 |
16 |

Welcome Faculty :

17 | 26 |
27 |
28 | Query Details 29 |
30 | Qurey ID : 31 | 32 |
33 |
34 | Email ID : 35 | 36 |
37 |
38 | Query :
39 |
41 |
42 |
43 | Answer :
44 | 47 |
48 |
49 | 50 |
51 | 52 | 55 |
56 |
57 | 65 |

66 |
67 | × 68 | Success!Query Details has been updated. 69 |
"; 70 | } else { 71 | //below statement will print error if SQL query fail. 72 | echo "
Query Details Updating Faliure. Try Again
Error Details: " . $sql . "
" . mysqli_error( $connect ); 73 | } 74 | //for close connection 75 | mysqli_close( $connect ); 76 | } 77 | ?> 78 |
79 |
80 | -------------------------------------------------------------------------------- /updateresultdetails.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | 13 |
14 |
15 |
16 | 17 | 18 |

Welcome Faculty :

19 | 20 | 31 |
32 |
33 | Update Result Details 34 |
35 | Result ID : 36 | 37 |
38 |
39 | Enrolment Number : 40 | 41 |
42 |
43 | Marks : 44 |
45 |
46 | 47 |
48 | 51 |
52 |
53 | 54 | 64 | × 65 | Success! Result has been updated. 66 | "; 67 | } else { 68 | //below statement will print error if SQL query fail. 69 | echo "
Result Updation Faliure. Try Again
Error Details: " . $sql . "
" . mysqli_error($connect); 70 | } 71 | //for close connection 72 | mysqli_close($connect); 73 | 74 | } 75 | 76 | 77 | ?> 78 | 79 |
80 | 81 |
82 | -------------------------------------------------------------------------------- /updatestudent.php: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 |
12 |
13 |
14 | 15 | 24 |
25 |
26 | Enrolment number : 27 |
28 |
29 | First Name : 30 |
31 |
32 | Last Name :
33 |
34 |
35 | Father Name :
36 |
37 |
38 | Addres :
39 |
40 |
41 | Gender :
42 |
43 |
44 | Course :
45 |
46 |
47 | D.O.B. :
48 |
49 |
50 | Phone Number :
51 |
52 |
53 | Email :
54 |
55 |
56 | Password :
57 |

58 |
59 | 60 | 61 |
62 |
63 | 66 | 67 |
87 |
88 | × 89 | Success! Student Details has been updated. 90 |
91 | 92 | "; 93 | } else { 94 | //below statement will print error if SQL query fail. 95 | echo "
Student Updation Faliure. Try Again
Error Details: " . $sql . "
" . mysqli_error( $connect ); 96 | } 97 | //for close connection 98 | mysqli_close( $connect ); 99 | 100 | } 101 | ?> 102 |
103 |
104 | -------------------------------------------------------------------------------- /videos.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 |
14 |
15 | 16 |

Welcome Faculty :

17 | 18 | 19 |
20 |
21 | -------------------------------------------------------------------------------- /viewquery.php: -------------------------------------------------------------------------------- 1 | 12 | 13 |
14 |
15 |
16 |

Welcome ".$userfname." ".$userlname."";?>

17 | Query View"; 25 | echo " 26 | 27 | 28 | 29 | 30 | "; 31 | while($row=mysqli_fetch_array($rs)) 32 | { 33 | ?> 34 | 35 | 38 | 41 | 44 | 45 | 48 |
Query IDQueryAns
36 | 37 | 39 | 40 | 42 | 43 |
49 | 50 |
51 |
52 | -------------------------------------------------------------------------------- /viewresult.php: -------------------------------------------------------------------------------- 1 | 11 | 12 | 13 |
14 |
15 |
16 |

Welcome ".$userfname." ".$userlname."";?>

17 | Result View"; 25 | echo " 26 | 27 | 28 | 29 | 30 | 31 | "; 32 | while($row=mysqli_fetch_array($rs)) 33 | { 34 | ?> 35 | 36 | 39 | 42 | 43 | 46 | 47 | 50 |
Result IDEnrolment NumberMarks
37 | 38 | 40 | 41 | 44 | 45 |
51 |
52 |
53 | -------------------------------------------------------------------------------- /viewstudentdetails.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
13 |
14 |
15 | 16 |

Welcome Faculty :

17 | Student Details"; 22 | //below will print all student details to admin 23 | echo " 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | "; 36 | while ( $row = mysqli_fetch_array( $result ) ) { 37 | ?> 38 | 39 | 40 | 43 | 46 | 49 | 52 | 55 | 58 | 61 | 64 | 67 | 70 | 71 | 72 |
Enrolment NumberFirst NameLast NameFather NameAddressGenderCourseDOBPhone NumberEmail
41 | 42 | 44 | 45 | 47 | 48 | 50 | 51 | 53 | 54 | 56 | 57 | 59 | 60 | 62 | 63 | 65 | 66 | 68 | 69 |
73 |
74 |
75 | -------------------------------------------------------------------------------- /viewvideos.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 | 15 |
16 |
17 |
18 |

Welcome ". $userfname." ".$userlname."";?>

19 | 20 | Videos Details"; 26 | echo " 27 | 28 | 29 | 30 | 31 | "; 32 | while($row=mysqli_fetch_array($rs)) 33 | { 34 | ?> 35 | 36 | 39 | 42 | 43 | 45 | 46 | 49 |
Video TitleDescriptionView
37 | 38 | 40 | 41 | 44 |
50 | 51 |
52 |
53 | -------------------------------------------------------------------------------- /viewvideos2.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 | 15 |
16 |
17 |
18 |

Welcome ". $userfname." ".$userlname."";?>

19 | 20 | 26 | 30 | 31 | 32 |

Title:

33 | 34 |
35 | 36 | 37 | 38 | 39 |
40 | 41 |

Video Description

42 | 43 |
44 | 45 | 46 | 47 | 50 | 51 |
52 |
53 | -------------------------------------------------------------------------------- /welcomeadmin.php: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 |
13 |
14 |
15 | 16 |

Welcome Admin

17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 |
28 | -------------------------------------------------------------------------------- /welcomefaculty.php: -------------------------------------------------------------------------------- 1 | 12 | 13 |
14 |
15 |
16 | 17 |

Welcome Faculty :

18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
32 | -------------------------------------------------------------------------------- /welcomestudent.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | 15 |
16 |
17 |
18 | 19 |

Welcome ".$userfname." ".$userlname."";?>

20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 |
35 | 36 |
37 | --------------------------------------------------------------------------------