diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..9400666 Binary files /dev/null and b/.DS_Store differ diff --git a/admin_attendance.php b/admin_attendance.php new file mode 100755 index 0000000..bbe8b12 --- /dev/null +++ b/admin_attendance.php @@ -0,0 +1,122 @@ + +event + + + + + + +
+
+ +
+
+ +
+ + +
+
+ + +
+
+ + +
+
+ +
+
+
+ + +
+
+ + "; + echo "
"; + echo "
"; + echo '
'; + echo "

" . $row['title'] . "

"; + echo ''; + echo ''; + echo "
"; + echo "
"; + echo "

Description:

"; + echo "

" . $row['comment'] . "

"; + echo "
"; + echo "
"; + echo "
"; + echo ''; + } + + + ?> +
+
+ + +
+ + \ No newline at end of file diff --git a/admin_event.php b/admin_event.php new file mode 100755 index 0000000..a44e820 --- /dev/null +++ b/admin_event.php @@ -0,0 +1,132 @@ + +event + + + + + + +
+
+ +
+
+ +
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ +
+
+
+ + +
+
+ +"; + echo "
"; + echo"
"; + echo '
'; + echo "

".$row['title']."

"; + echo''; + echo''; + + + echo"
"; + echo"
"; + echo "

Description:

"; + echo "

".$row['comment']."

"; + echo"Register here..."; + echo"
"; + echo"
"; + echo"
"; + echo''; + } + + + ?> +
+
+ + +
+ + + diff --git a/admin_header.php b/admin_header.php new file mode 100755 index 0000000..72653d2 --- /dev/null +++ b/admin_header.php @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + +
+ +
+ notice + events + CT marks + attendance + notes + question
     paper
+
+
+ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/admin_login.php b/admin_login.php new file mode 100755 index 0000000..b56738f --- /dev/null +++ b/admin_login.php @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + Relier + + +
+
+ +
+ +
+
+

Welcome

+
+
+ + + We'll never share your email with anyone else. +
+
+ + +
+
+ +
+
+
+
+
+ 0){ + $_SESSION['username']=$email; + header('location:admin_notice.php'); + } + else + { + header('location:admin_login.php'); + } + } + + ?> + + + + + + + + + diff --git a/admin_notes.php b/admin_notes.php new file mode 100755 index 0000000..3f05f8c --- /dev/null +++ b/admin_notes.php @@ -0,0 +1,137 @@ + + +notes + + + + + + + + +
+
+ +
+
+ + + + + + + + + + + + + +
+ + +
+
+ +
+
+
+ + + +
+
+ + "; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + + echo ''; + while ($row = mysqli_fetch_array($result2)) { + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + } + echo ''; + echo '
subjectsbranchsemesterdownloadaction
' . $row['subject'] . '' . $row['branch'] . '' . $row['semester'] . '' . $row['notes'] . '
'; + echo "
"; + + + ?> + +
+
+
+ + diff --git a/admin_notice.php b/admin_notice.php new file mode 100755 index 0000000..172631d --- /dev/null +++ b/admin_notice.php @@ -0,0 +1,132 @@ + + +notice + + + + + + +
+
+ +
+
+ +
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ +
+
+
+ + +
+
+ + "; + echo "
"; + echo"
"; + echo '
'; + echo "

".$row['title']."

"; + + echo''; + echo''; + echo"
"; + + echo"
"; + echo "

Description:

"; + echo "

".$row['comment']."

"; + echo"
"; + echo"
"; + echo"
"; + echo''; + } + + + ?> + +
+
+
+ diff --git a/admin_quepaper.php b/admin_quepaper.php new file mode 100755 index 0000000..8823f92 --- /dev/null +++ b/admin_quepaper.php @@ -0,0 +1,242 @@ + +que. paper + + + + + + + + +
+
+ +
+
+ +
+
+ + + +
+ +
+ + +
+
+ + + +
+
+ + +
+
+ + +
+
+
+ + +
+
+ +
+
+
+ + +
+
+ "; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + + echo ''; + while ($row = mysqli_fetch_array($result3)) { + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + echo ''; + } + echo ''; + echo '
branchsemestersubjectssessionyearpaperaction
' . $row['branch'] . '' . $row['semester'] . '' . $row['subject'] . '' . $row['session'] . '' . $row['year'] . ' + + + + +
'; + echo "
"; + + + ?> + +
+
+
+ + + + + + + diff --git a/admin_signout.php b/admin_signout.php new file mode 100755 index 0000000..4f7445c --- /dev/null +++ b/admin_signout.php @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git a/ajaxData.php b/ajaxData.php new file mode 100755 index 0000000..e23ac97 --- /dev/null +++ b/ajaxData.php @@ -0,0 +1,34 @@ +query($query); + + // Generate HTML of sem options list + if($result->num_rows > 0){ + echo ''; + while($row = $result->fetch_assoc()){ + echo ''; + } + }else{ + echo ''; + } +}elseif(!empty($_POST["sem_id"])){ + // Fetch sub data based on the specific sem + $query = "SELECT * FROM subjects WHERE sem_id = ".$_POST['sem_id']." ORDER BY sub_name ASC"; + $result = $db->query($query); + + // Generate HTML of sub options list + if($result->num_rows > 0){ + echo ''; + while($row = $result->fetch_assoc()){ + echo ''; + } + }else{ + echo ''; + } +} +?> \ No newline at end of file diff --git a/assets/.DS_Store b/assets/.DS_Store new file mode 100644 index 0000000..6c9c381 Binary files /dev/null and b/assets/.DS_Store differ diff --git a/assets/css/admin_header.css b/assets/css/admin_header.css new file mode 100755 index 0000000..bc4ff98 --- /dev/null +++ b/assets/css/admin_header.css @@ -0,0 +1,178 @@ +@import url('https://fonts.googleapis.com/css2?family=Sansita+Swashed:wght@900&display=swap'); +* { + margin: 0px; + padding: 0px; + box-sizing: border-box; +} + +body { + background: #F7FBFC; +} + + +/* The sidepanel menu */ + +.sidepanel { + height: 100vh; + /* Specify a height */ + width: 0; + /* 0 width - change this with JavaScript */ + position: fixed; + /* Stay in place */ + z-index: 5; + /* Stay on top */ + top: 0; + left: 0; + background-color: rgba(0, 0, 0, 0.95); + /* Disable horizontal scroll */ + /* Place content 60px from the top */ + transition: 0.5s; + /* 0.5 second transition effect to slide in the sidepanel */ + box-shadow: 0px 0px 5px; + overflow: hidden; +} + + +/* The sidepanel links */ + +.panelcontent a { + padding: 8px 8px 16px 15px; + text-decoration: none; + font-size: 18px; + color: #818181; + display: block; + transition: 0.3s; + text-transform: capitalize; + justify-items: left; +} + +.panelcontent { + margin-top: 30px; + margin-left: auto; + margin-right: auto; + max-width: 30vh; +} + + +/* When you mouse over the navigation links, change their color */ + +.sidepanel a:hover { + color: #f1f1f1; +} + +a.active { + color: #f1f1f1; +} + + +/* Position and style the close button (top right corner) */ + +.sidepanel .closebtn { + font-size: 25px; + cursor: pointer; + border: none; + display: block; + margin: 0px; + padding: 5px 10px; +} + +.sidepanel .closebtn i { + color: white; +} + +.sidepanel .closebtn i:hover { + color: #0074D9; +} + + +/* Style the button that is used to open the sidepanel */ + +.openbtn { + font-size: 25px; + cursor: pointer; + background-color: #0074D9; + color: white; + padding: 0px 10px; + border: none; +} + +.openbtn:hover { + color: black; + border: none; +} + + +/*top bar*/ + +a i { + color: #0074D9; +} + +.navbar { + background-color: #0074D9 !important; + min-height: 7vh !important; + margin: 0px !important; + padding: 0px !important; + position: sticky !important; + box-shadow: 0px 0px 5px; + z-index: 4 !important; +} + +#signout { + text-decoration: none; + color: white; + opacity: 0.6; + font-size: 18px; + float: right; + margin-right: 15px; + font-weight: 600; +} + +#signout i { + color: white; + opacity: 0.6; +} + +#signout:hover { + opacity: 1; +} + +.navbar h2 { + text-align: center; + font-size: 30px; + font-family: 'Sansita Swashed', cursive; + text-transform: capitalize; + opacity: 0.4; +} + +.navbar h2:hover { + color: white; + opacity: 1; + box-shadow: inset; +} + + +/************************/ + +#user img { + width: 120px; + height: 120px; + border-radius: 50% !important; + padding: 15px; +} + +#user h4 { + font-size: 18px; + color: white; + padding: 3px; + text-align: center; + text-transform: uppercase; + position: relative; + display: block; +} + +@media only screen and (max-width: 700px) { + .panelcontent a { + font-size: 20px; + } +} \ No newline at end of file diff --git a/assets/css/admin_login.css b/assets/css/admin_login.css new file mode 100755 index 0000000..d6c9bf3 --- /dev/null +++ b/assets/css/admin_login.css @@ -0,0 +1,100 @@ +@import url('https://fonts.googleapis.com/css2?family=Sansita+Swashed:wght@900&display=swap'); +@import url('https://fonts.googleapis.com/css2?family=Sansita+Swashed:wght@900&family=Secular+One&display=swap'); +* { + margin: 0px; + padding: 0px; + box-sizing: border-box; +} + +body { + height: 100%; +} + +.bg { + background-image: url('../images/background.jpg'); + background-repeat: no-repeat; + background-size: cover; + width: 100%; + height: 100vh; + background-position: center; +} + +.back { + background-color: rgba(0, 0, 0, 0.6); + height: 100vh; +} + +.wel p { + color: white !important; + font-size: 30px !important; + font-family: 'Sansita Swashed', cursive !important; + position: relative !important; +} + +.form-container { + margin-top: 10vh; + position: relative; +} + +.form-group { + width: 250px !important; + margin-left: auto !important; + margin-right: auto !important; + color: white !important; + position: relative !important; +} + +.btn:not(:disabled):not(.disabled) { + cursor: pointer; + margin-left: 40px; + display: block; +} + +.btn { + width: 250px !important; + margin-left: auto !important; + margin-right: auto !important; + border-radius: 50px; +} + +.form-control { + background-color: transparent !important; + border: 2px solid white !important; + border-radius: 50px !important; + color: white; +} + +.form-control:active, +.form-control:focus, +.form-control:focus:active { + border-color: #96d3ec !important; + color: white !important; +} + +p { + font-family: 'Sansita Swashed', cursive; + font-size: 50px; + color: white; +} + +h1 { + color: white; + font-family: 'Sansita Swashed', cursive; + font-size: 35px; + opacity: 0.6; +} + +@media only screen and (max-height: 500px) { + .form-container { + margin-top: 0px; + } + .wel { + visibility: hidden; + } + .bg { + height: 110vh; + } + .logo { + visibility: hidden; + } +} \ No newline at end of file diff --git a/assets/css/admin_notes_paper.css b/assets/css/admin_notes_paper.css new file mode 100755 index 0000000..6f739ee --- /dev/null +++ b/assets/css/admin_notes_paper.css @@ -0,0 +1,85 @@ +/**************form************/ + +.form-container label { + font-size: 18px; + font-family: 'Montserrat', sans-serif; + color: #0F111B; + text-decoration: none; + margin-top: 10px; + text-transform: capitalize; + text-align: left; +} + +.form-control-file, +.form-control-range { + display: block; + width: 100%; + border: 1px solid lightgrey !important; + background-color: white !important; + border-radius: 3px; +} + +.form-container { + border-bottom: 2px solid #BDBCCA; + height: 100%; + padding: 20px; + position: relative; +} + +input[type="submit"] { + color: white; + border: none; + font-size: 15px; + background-color: #0F111B; +} + +input[type="submit"]:hover { + background-color: #0074D9; +} + +.delete input[type="submit"] { + padding: 5px; + border-radius: 5px; +} + +.delete input[type="submit"]:hover { + background-color: red; +} + +@media only screen and (min-width: 992px) { + .form-container { + position: fixed !important; + border-left: 2px solid #BDBCCA; + } +} + + +/***********preview***********/ + +.preview { + margin-top: 10px; +} + +tbody { + display: table; + height: 80vh; + overflow: auto; +} + +thead, +tbody tr { + display: table; + width: 100%; + table-layout: fixed; +} + +th, +td { + text-align: center !important; + text-transform: capitalize; +} + +.modal-body { + width: 100%!important; + height: 100vh; +} \ No newline at end of file diff --git a/assets/css/admin_notice_event.css b/assets/css/admin_notice_event.css new file mode 100755 index 0000000..45773c2 --- /dev/null +++ b/assets/css/admin_notice_event.css @@ -0,0 +1,221 @@ +/***************form***************/ + +.form-container { + border-bottom: 2px solid #BDBCCA; + height: 100%; + padding: 20px; + position: relative; +} + +input[type="submit"] { + color: white; + border: none; + font-size: 15px; + background-color: #0F111B; +} + +input[type="submit"]:hover { + background-color: #0074D9; +} + +.form-control-file, +.form-control-range { + display: block; + width: 100%; + border: 1px solid lightgrey !important; + background-color: white !important; + border-radius: 3px; +} + +.form-container label { + font-size: 18px; + font-family: 'Montserrat', sans-serif; + color: #0F111B; + text-decoration: none; + padding: 5px; +} + + +/************preview******************/ + +.preview { + margin-top: 50px; +} + +.preview h1 { + font-size: 15px; + font-family: 'Montserrat', sans-serif; + color: #0F111B; + padding: 10px; + font-weight: bold; + margin-top: 10px; + text-transform: uppercase; + text-align: left; +} + +.preview img { + display: block; + margin-left: auto; + margin-right: auto; + margin-top: 5px; + width: 100%; + height: auto; + padding-bottom: 5px; +} + +.preview p { + font-size: 15px; + font-family: 'Montserrat', sans-serif; + color: #0F111B; + text-decoration: none; + position: relative; +} + +.container { + border-bottom: 2px solid grey; +} + +.preview .delete { + position: relative; +} + +.delete input[type="submit"] { + color: white; + background-color: black; + font-size: 15px; + padding: 5px; + font-weight: bold; + margin-top: 15px; + text-transform: uppercase; + text-align: center; + float: right; + border-radius: 3px; +} + +.delete input[type="submit"]:hover { + background-color: red; +} + +.support-answer-textarea { + white-space: pre-wrap; +} + +@media only screen and (min-width: 992px) { + .form-container { + position: fixed !important; + border-left: 2px solid #BDBCCA; + } +} + + +/************fullscreen***************/ + +body { + font-family: Arial, Helvetica, sans-serif; +} + +#myImg { + border-radius: 5px; + cursor: pointer; + transition: 0.3s; +} + +#myImg:hover { + opacity: 0.7; +} + + +/* The Modal (background) */ + +.modal { + display: none; + /* Hidden by default */ + position: fixed; + /* Stay in place */ + z-index: 1; + /* Sit on top */ + padding-top: 100px; + /* Location of the box */ + left: 0; + top: 0; + width: 100%; + /* Full width */ + height: 100%; + /* Full height */ + overflow: auto; + /* Enable scroll if needed */ + background-color: rgb(0, 0, 0); + /* Fallback color */ + background-color: rgba(0, 0, 0, 0.9); + /* Black w/ opacity */ + overflow: hidden; +} + + +/* Modal Content (image) */ + +.modal-content { + margin: auto; + display: block; + width: 100%; + max-width: 80vh; +} + + +/* Add Animation */ + +.modal-content { + -webkit-animation-name: zoom; + -webkit-animation-duration: 0.6s; + animation-name: zoom; + animation-duration: 0.6s; +} + +@-webkit-keyframes zoom { + from { + -webkit-transform: scale(0) + } + to { + -webkit-transform: scale(1) + } +} + +@keyframes zoom { + from { + transform: scale(0) + } + to { + transform: scale(1) + } +} + + +/* The Close Button */ + +.close { + position: absolute; + right: 20px; + color: #f1f1f1; + font-size: 40px; + font-weight: bold; + transition: 0.3s; + margin-top: 50px; + opacity: 1; + z-index: 4; +} + +.close:hover, +.close:focus { + color: #bbb; + text-decoration: none; + cursor: pointer; +} + + +/* 100% Image Width on Smaller Screens */ + +@media only screen and (max-width: 700px) { + .modal-content { + width: 100%; + } +} \ No newline at end of file diff --git a/assets/css/ctmarks.css b/assets/css/ctmarks.css new file mode 100755 index 0000000..2f17ee6 --- /dev/null +++ b/assets/css/ctmarks.css @@ -0,0 +1,76 @@ +.form-container { + margin-top: 10px !important; + text-transform: capitalize; +} + +.col-12 { + margin-top: 5px !important; +} + +label { + font-weight: bold; +} + +select { + width: fit-content !important; +} + +input { + width: 100% !important; +} + +input[type="file"] { + border: 1px solid gray !important; + border-radius: 5px; +} + +input[type="submit"] { + color: white; + border: none; + font-size: 15px; + background-color: #0F111B; + padding: 5px !important; + height: fit-content !important; +} + +input[type="submit"]:hover { + background-color: #0074D9; +} + +.form-group { + width: 100%; +} + +.form-control { + margin: 10px 0px !important; +} + +table { + position: relative; + border-collapse: collapse; +} + +th, +td { + padding: 0.25rem; +} + +th { + position: sticky; + top: 0; + /* Don't forget this, required for the stickiness */ + box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.4); +} + +@media only screen and (max-width: 700px) { + input[type="submit"] { + width: 100% !important; + } + input[type="file"] { + width: 100% !important; + } + .form-container { + height: fit-content; + border-right: none !important; + } +} \ No newline at end of file diff --git a/assets/css/dashboard.css b/assets/css/dashboard.css new file mode 100755 index 0000000..30f17bd --- /dev/null +++ b/assets/css/dashboard.css @@ -0,0 +1,21 @@ +.col-12 { + margin-top: 10px; + overflow-x: hidden; +} + +table { + border: none !important; +} + +td { + text-align: center !important; + text-transform: capitalize !important; + font-size: 15px !important; + padding: 5px !important; +} + +th { + text-transform: uppercase !important; + font-size: 15px !important; + text-align: center !important; +} \ No newline at end of file diff --git a/assets/css/event.css b/assets/css/event.css new file mode 100755 index 0000000..dbc536c --- /dev/null +++ b/assets/css/event.css @@ -0,0 +1,184 @@ +.carousel-item img { + height: 93vh !important; + width: auto !important; + margin-left: auto; + margin-right: auto; +} + +.slide { + background-color: black !important; +} + +.slide { + z-index: 1; +} + +.preview { + margin-top: 50px; +} + +.preview h1 { + font-size: 15px; + font-family: 'Montserrat', sans-serif; + color: #0F111B; + font-weight: bold; + margin-top: 10px; + text-transform: uppercase; + text-align: left; +} + +.preview img { + display: block; + margin-left: auto; + margin-right: auto; + margin-top: 5px; + width: 100%; + height: auto; + padding-bottom: 5px; +} + +.preview p { + font-size: 15px; + font-family: 'Montserrat', sans-serif; + color: #0F111B; + text-decoration: none; + position: relative; +} + +.container { + border-bottom: 1px solid grey; +} + +.delete input[type="submit"] { + color: white; + background-color: black; + font-size: 15px; + padding: 5px; + font-weight: bold; + margin-top: 15px; + text-transform: uppercase; + text-align: center; + float: right; + border-radius: 3px; +} + +.delete input[type="submit"]:hover { + background-color: red; +} + +.support-answer-textarea { + white-space: pre-wrap; +} + + +/************fullscreen***************/ + +body { + font-family: Arial, Helvetica, sans-serif; +} + +#myImg { + border-radius: 5px; + cursor: pointer; + transition: 0.3s; +} + +#myImg:hover { + opacity: 0.7; +} + + +/* The Modal (background) */ + +.modal { + display: none; + /* Hidden by default */ + position: fixed; + /* Stay in place */ + z-index: 1; + /* Sit on top */ + padding-top: 100px; + /* Location of the box */ + left: 0; + top: 0; + width: 100%; + /* Full width */ + height: 100%; + /* Full height */ + overflow: auto; + /* Enable scroll if needed */ + background-color: rgb(0, 0, 0); + /* Fallback color */ + background-color: rgba(0, 0, 0, 0.9); + /* Black w/ opacity */ + overflow: hidden; +} + + +/* Modal Content (image) */ + +.modal-content { + margin: auto; + display: block; + width: 100%; + max-width: 80vh; +} + + +/* Add Animation */ + +.modal-content { + -webkit-animation-name: zoom; + -webkit-animation-duration: 0.6s; + animation-name: zoom; + animation-duration: 0.6s; +} + +@-webkit-keyframes zoom { + from { + -webkit-transform: scale(0) + } + to { + -webkit-transform: scale(1) + } +} + +@keyframes zoom { + from { + transform: scale(0) + } + to { + transform: scale(1) + } +} + + +/* The Close Button */ + +.close { + position: absolute; + right: 20px; + color: #f1f1f1; + font-size: 40px; + font-weight: bold; + transition: 0.3s; + margin-top: 50px; + opacity: 1; + z-index: 4; +} + +.close:hover, +.close:focus { + color: #bbb; + text-decoration: none; + cursor: pointer; +} + + +/* 100% Image Width on Smaller Screens */ + +@media only screen and (max-width: 700px) { + .modal-content { + width: 100%; + } +} \ No newline at end of file diff --git a/assets/css/notes.css b/assets/css/notes.css new file mode 100755 index 0000000..ac31539 --- /dev/null +++ b/assets/css/notes.css @@ -0,0 +1,34 @@ +select { + margin: 5px 0px !important; +} + + +/* tbody { + display: table; + height: 100%; + overflow: auto; +} + +thead, +tbody tr { + display: table; + width: 100%; + table-layout: fixed; +} + +th, +td { + text-align: center !important; + text-transform: capitalize; + width: 100% !important; +} */ + +thead { + position: fixed; +} + +tr { + width: 100%; + display: table; + table-layout: fixed; +} \ No newline at end of file diff --git a/assets/images/.DS_Store b/assets/images/.DS_Store new file mode 100644 index 0000000..620afaa Binary files /dev/null and b/assets/images/.DS_Store differ diff --git a/assets/images/background.jpg b/assets/images/background.jpg new file mode 100755 index 0000000..3bab5b0 Binary files /dev/null and b/assets/images/background.jpg differ diff --git a/assets/images/event/60589f99d78c451c1a29d62e7700434c.png b/assets/images/event/60589f99d78c451c1a29d62e7700434c.png new file mode 100755 index 0000000..38b7183 Binary files /dev/null and b/assets/images/event/60589f99d78c451c1a29d62e7700434c.png differ diff --git a/assets/images/event/IMG-20200821-WA0009.jpg b/assets/images/event/IMG-20200821-WA0009.jpg new file mode 100755 index 0000000..47a174c Binary files /dev/null and b/assets/images/event/IMG-20200821-WA0009.jpg differ diff --git a/assets/images/event/IMG-20200913-WA0006.jpg b/assets/images/event/IMG-20200913-WA0006.jpg new file mode 100755 index 0000000..9a51423 Binary files /dev/null and b/assets/images/event/IMG-20200913-WA0006.jpg differ diff --git a/assets/images/event/IMG-20200927-WA0024.jpg b/assets/images/event/IMG-20200927-WA0024.jpg new file mode 100755 index 0000000..a907452 Binary files /dev/null and b/assets/images/event/IMG-20200927-WA0024.jpg differ diff --git a/assets/images/event/IMG-20200930-WA0020.jpg b/assets/images/event/IMG-20200930-WA0020.jpg new file mode 100755 index 0000000..63754c4 Binary files /dev/null and b/assets/images/event/IMG-20200930-WA0020.jpg differ diff --git a/assets/images/event/MUSIC.jpg b/assets/images/event/MUSIC.jpg new file mode 100755 index 0000000..f265d3c Binary files /dev/null and b/assets/images/event/MUSIC.jpg differ diff --git a/assets/images/event/Tnf46w2-dj-wallpapers.jpg b/assets/images/event/Tnf46w2-dj-wallpapers.jpg new file mode 100755 index 0000000..0761ae3 Binary files /dev/null and b/assets/images/event/Tnf46w2-dj-wallpapers.jpg differ diff --git a/assets/images/event/agresita-1.jpg b/assets/images/event/agresita-1.jpg new file mode 100755 index 0000000..c526a34 Binary files /dev/null and b/assets/images/event/agresita-1.jpg differ diff --git a/assets/images/event/goku.png b/assets/images/event/goku.png new file mode 100755 index 0000000..0fa3127 Binary files /dev/null and b/assets/images/event/goku.png differ diff --git a/assets/images/event/goku_and_krillin_in_training__by_parimak_daic3y5-fullview_2.jpg b/assets/images/event/goku_and_krillin_in_training__by_parimak_daic3y5-fullview_2.jpg new file mode 100755 index 0000000..493eaf4 Binary files /dev/null and b/assets/images/event/goku_and_krillin_in_training__by_parimak_daic3y5-fullview_2.jpg differ diff --git a/assets/images/event/img.jpg b/assets/images/event/img.jpg new file mode 100755 index 0000000..82ba39c Binary files /dev/null and b/assets/images/event/img.jpg differ diff --git a/assets/images/event/photo.jfif b/assets/images/event/photo.jfif new file mode 100755 index 0000000..73e550b Binary files /dev/null and b/assets/images/event/photo.jfif differ diff --git a/assets/images/event/pola.jpg b/assets/images/event/pola.jpg new file mode 100755 index 0000000..ddac159 Binary files /dev/null and b/assets/images/event/pola.jpg differ diff --git a/assets/images/event/psc size abhishek.jpg b/assets/images/event/psc size abhishek.jpg new file mode 100755 index 0000000..0f7137b Binary files /dev/null and b/assets/images/event/psc size abhishek.jpg differ diff --git a/assets/images/event/video-1.jpg b/assets/images/event/video-1.jpg new file mode 100755 index 0000000..8ffc1fd Binary files /dev/null and b/assets/images/event/video-1.jpg differ diff --git a/assets/images/notice/698762.jpg b/assets/images/notice/698762.jpg new file mode 100755 index 0000000..46dd948 Binary files /dev/null and b/assets/images/notice/698762.jpg differ diff --git a/assets/images/notice/IMG-20200820-WA0005.jpg b/assets/images/notice/IMG-20200820-WA0005.jpg new file mode 100755 index 0000000..750dd19 Binary files /dev/null and b/assets/images/notice/IMG-20200820-WA0005.jpg differ diff --git a/assets/images/notice/IMG-20200908-WA0005.jpg b/assets/images/notice/IMG-20200908-WA0005.jpg new file mode 100755 index 0000000..dbd35be Binary files /dev/null and b/assets/images/notice/IMG-20200908-WA0005.jpg differ diff --git a/assets/images/notice/Lido Bathroom Vanity Wall Light.jpg b/assets/images/notice/Lido Bathroom Vanity Wall Light.jpg new file mode 100755 index 0000000..078ab0a Binary files /dev/null and b/assets/images/notice/Lido Bathroom Vanity Wall Light.jpg differ diff --git a/assets/images/notice/MUSIC.jpg b/assets/images/notice/MUSIC.jpg new file mode 100755 index 0000000..f265d3c Binary files /dev/null and b/assets/images/notice/MUSIC.jpg differ diff --git a/assets/images/notice/New Doc 2018-02-12_1_1563080112568.jpg b/assets/images/notice/New Doc 2018-02-12_1_1563080112568.jpg new file mode 100755 index 0000000..deadded Binary files /dev/null and b/assets/images/notice/New Doc 2018-02-12_1_1563080112568.jpg differ diff --git a/assets/images/notice/New Doc 2018-08-17_1_1553488396236.jpg b/assets/images/notice/New Doc 2018-08-17_1_1553488396236.jpg new file mode 100755 index 0000000..0650268 Binary files /dev/null and b/assets/images/notice/New Doc 2018-08-17_1_1553488396236.jpg differ diff --git a/assets/images/notice/WhatsApp Image 2020-09-25 at 2.25.53 PM.jpeg b/assets/images/notice/WhatsApp Image 2020-09-25 at 2.25.53 PM.jpeg new file mode 100755 index 0000000..21011e5 Binary files /dev/null and b/assets/images/notice/WhatsApp Image 2020-09-25 at 2.25.53 PM.jpeg differ diff --git a/assets/images/notice/WhatsApp Image 2020-09-26 at 2.30.07 PM.jpeg b/assets/images/notice/WhatsApp Image 2020-09-26 at 2.30.07 PM.jpeg new file mode 100755 index 0000000..88e8fec Binary files /dev/null and b/assets/images/notice/WhatsApp Image 2020-09-26 at 2.30.07 PM.jpeg differ diff --git a/assets/images/notice/aaa.jpg b/assets/images/notice/aaa.jpg new file mode 100755 index 0000000..c1ab567 Binary files /dev/null and b/assets/images/notice/aaa.jpg differ diff --git a/assets/images/notice/abhi.lonhare.pdf b/assets/images/notice/abhi.lonhare.pdf new file mode 100755 index 0000000..fb15f7a Binary files /dev/null and b/assets/images/notice/abhi.lonhare.pdf differ diff --git a/assets/images/notice/agresita-1.jpg b/assets/images/notice/agresita-1.jpg new file mode 100755 index 0000000..c526a34 Binary files /dev/null and b/assets/images/notice/agresita-1.jpg differ diff --git a/assets/images/notice/form.pdf b/assets/images/notice/form.pdf new file mode 100755 index 0000000..e6cfffd Binary files /dev/null and b/assets/images/notice/form.pdf differ diff --git a/assets/images/notice/pic.jfif b/assets/images/notice/pic.jfif new file mode 100755 index 0000000..a3751a3 Binary files /dev/null and b/assets/images/notice/pic.jfif differ diff --git a/assets/images/notice/uwp413667.jpeg b/assets/images/notice/uwp413667.jpeg new file mode 100644 index 0000000..062ea4e Binary files /dev/null and b/assets/images/notice/uwp413667.jpeg differ diff --git a/assets/images/profilepic/Spider-Man.jpg b/assets/images/profilepic/Spider-Man.jpg new file mode 100755 index 0000000..c23917f Binary files /dev/null and b/assets/images/profilepic/Spider-Man.jpg differ diff --git a/assets/images/profilepic/deadpool.jpg b/assets/images/profilepic/deadpool.jpg new file mode 100755 index 0000000..c1aeec2 Binary files /dev/null and b/assets/images/profilepic/deadpool.jpg differ diff --git a/assets/images/profilepic/iron-man.jpg b/assets/images/profilepic/iron-man.jpg new file mode 100755 index 0000000..49b8869 Binary files /dev/null and b/assets/images/profilepic/iron-man.jpg differ diff --git a/assets/images/profilepic/profile.jpg b/assets/images/profilepic/profile.jpg new file mode 100755 index 0000000..0c513da Binary files /dev/null and b/assets/images/profilepic/profile.jpg differ diff --git a/assets/js/ajax.js b/assets/js/ajax.js new file mode 100755 index 0000000..169de73 --- /dev/null +++ b/assets/js/ajax.js @@ -0,0 +1,86 @@ +var semObject = { + "INFORMATION TECHNOLOGY": { + "3rd": ["Mathematics-III", "Discrete Structures", "Basic Electronics & Network Theory", "Concepts of IT & Web Technology", "Problem Solving & Logic Building using C", "Digital Electronics & Logic Design"], + "4th": ["Computational Mathematics", "Telecom Switching & Computer Networks", "Data Structures and Algorithm Analysis", "Analog Electronics Circuits", "Object Oriented Concepts & Programming using C++", "Computer Organization and Architecture"], + "5th": ["Microprocessor & Interfaces", "Principles of Communication system", "Database Management System", "Operating System", "Programming in Java", "Theory of Computation"], + "6th": ["Web Application Development", "Information Theory & Coding", "Software Engineering & Project Management", "UNIX & Shell Programming", "Computer Graphics & Animation", "Multimedia & Virtual Reality"], + "7th": ["Web Application Development", "Information Theory & Coding", "Software Engineering & Project Management", "UNIX & Shell Programming", "Computer Graphics & Animation", "Multimedia & Virtual Reality"], + "8th": ["Web Application Development", "Information Theory & Coding", "Software Engineering & Project Management", "UNIX & Shell Programming", "Computer Graphics & Animation", "Multimedia & Virtual Reality"] + + }, + "COMPUTER SCIENCE": { + "1st": ["basic civil", "mortar"], + "2nd": ["lintel", "rocks"], + "3rd": ["Mathematics-III", "Discrete Structures", "Basic Electronics & Network Theory", "Concepts of IT & Web Technology", "Problem Solving & Logic Building using C", "Digital Electronics & Logic Design"], + "4th": ["Computational Mathematics", "Telecom Switching & Computer Networks", "Data Structures and Algorithm Analysis", "Analog Electronics Circuits", "Object Oriented Concepts & Programming using C++", "Computer Organization and Architecture"], + "5th": ["Microprocessor & Interfaces", "Principles of Communication system", "Database Management System", "Operating System", "Programming in Java", "Theory of Computation"], + "6th": ["Web Application Development", "Information Theory & Coding", "Software Engineering & Project Management", "UNIX & Shell Programming", "Computer Graphics & Animation", "Multimedia & Virtual Reality"], + "7th": ["Web Application Development", "Information Theory & Coding", "Software Engineering & Project Management", "UNIX & Shell Programming", "Computer Graphics & Animation", "Multimedia & Virtual Reality"], + "8th": ["Web Application Development", "Information Theory & Coding", "Software Engineering & Project Management", "UNIX & Shell Programming", "Computer Graphics & Animation", "Multimedia & Virtual Reality"] + }, + "MECHANICAL": { + "1st": ["basic civil", "mortar"], + "2nd": ["lintel", "rocks"], + "3rd": ["Mathematics-III", "Discrete Structures", "Basic Electronics & Network Theory", "Concepts of IT & Web Technology", "Problem Solving & Logic Building using C", "Digital Electronics & Logic Design"], + "4th": ["Computational Mathematics", "Telecom Switching & Computer Networks", "Data Structures and Algorithm Analysis", "Analog Electronics Circuits", "Object Oriented Concepts & Programming using C++", "Computer Organization and Architecture"], + "5th": ["Microprocessor & Interfaces", "Principles of Communication system", "Database Management System", "Operating System", "Programming in Java", "Theory of Computation"], + "6th": ["Web Application Development", "Information Theory & Coding", "Software Engineering & Project Management", "UNIX & Shell Programming", "Computer Graphics & Animation", "Multimedia & Virtual Reality"], + "7th": ["Web Application Development", "Information Theory & Coding", "Software Engineering & Project Management", "UNIX & Shell Programming", "Computer Graphics & Animation", "Multimedia & Virtual Reality"], + "8th": ["Web Application Development", "Information Theory & Coding", "Software Engineering & Project Management", "UNIX & Shell Programming", "Computer Graphics & Animation", "Multimedia & Virtual Reality"] + }, + "ELECTRICAL": { + "1st": ["basic civil", "mortar"], + "2nd": ["lintel", "rocks"], + "3rd": ["Mathematics-III", "Discrete Structures", "Basic Electronics & Network Theory", "Concepts of IT & Web Technology", "Problem Solving & Logic Building using C", "Digital Electronics & Logic Design"], + "4th": ["Computational Mathematics", "Telecom Switching & Computer Networks", "Data Structures and Algorithm Analysis", "Analog Electronics Circuits", "Object Oriented Concepts & Programming using C++", "Computer Organization and Architecture"], + "5th": ["Microprocessor & Interfaces", "Principles of Communication system", "Database Management System", "Operating System", "Programming in Java", "Theory of Computation"], + "6th": ["Web Application Development", "Information Theory & Coding", "Software Engineering & Project Management", "UNIX & Shell Programming", "Computer Graphics & Animation", "Multimedia & Virtual Reality"], + "7th": ["Web Application Development", "Information Theory & Coding", "Software Engineering & Project Management", "UNIX & Shell Programming", "Computer Graphics & Animation", "Multimedia & Virtual Reality"], + "8th": ["Web Application Development", "Information Theory & Coding", "Software Engineering & Project Management", "UNIX & Shell Programming", "Computer Graphics & Animation", "Multimedia & Virtual Reality"] + }, + "ELECTRONICS & TELECOMMUNICATION": { + "1st": ["basic civil", "mortar"], + "2nd": ["lintel", "rocks"], + "3rd": ["Mathematics-III", "Discrete Structures", "Basic Electronics & Network Theory", "Concepts of IT & Web Technology", "Problem Solving & Logic Building using C", "Digital Electronics & Logic Design"], + "4th": ["Computational Mathematics", "Telecom Switching & Computer Networks", "Data Structures and Algorithm Analysis", "Analog Electronics Circuits", "Object Oriented Concepts & Programming using C++", "Computer Organization and Architecture"], + "5th": ["Microprocessor & Interfaces", "Principles of Communication system", "Database Management System", "Operating System", "Programming in Java", "Theory of Computation"], + "6th": ["Web Application Development", "Information Theory & Coding", "Software Engineering & Project Management", "UNIX & Shell Programming", "Computer Graphics & Animation", "Multimedia & Virtual Reality"], + "7th": ["Web Application Development", "Information Theory & Coding", "Software Engineering & Project Management", "UNIX & Shell Programming", "Computer Graphics & Animation", "Multimedia & Virtual Reality"], + "8th": ["Web Application Development", "Information Theory & Coding", "Software Engineering & Project Management", "UNIX & Shell Programming", "Computer Graphics & Animation", "Multimedia & Virtual Reality"] + }, + "CIVIL": { + "1st": ["basic civil", "mortar"], + "2nd": ["lintel", "rocks"], + "3rd": ["Mathematics-III", "Discrete Structures", "Basic Electronics & Network Theory", "Concepts of IT & Web Technology", "Problem Solving & Logic Building using C", "Digital Electronics & Logic Design"], + "4th": ["Computational Mathematics", "Telecom Switching & Computer Networks", "Data Structures and Algorithm Analysis", "Analog Electronics Circuits", "Object Oriented Concepts & Programming using C++", "Computer Organization and Architecture"], + "5th": ["Microprocessor & Interfaces", "Principles of Communication system", "Database Management System", "Operating System", "Programming in Java", "Theory of Computation"], + "6th": ["Web Application Development", "Information Theory & Coding", "Software Engineering & Project Management", "UNIX & Shell Programming", "Computer Graphics & Animation", "Multimedia & Virtual Reality"], + "7th": ["Web Application Development", "Information Theory & Coding", "Software Engineering & Project Management", "UNIX & Shell Programming", "Computer Graphics & Animation", "Multimedia & Virtual Reality"], + "8th": ["Web Application Development", "Information Theory & Coding", "Software Engineering & Project Management", "UNIX & Shell Programming", "Computer Graphics & Animation", "Multimedia & Virtual Reality"] + }, +} +window.onload = function() { + var branchSel = document.getElementById("branchSel"), + semSel = document.getElementById("semSel"), + subjectSel = document.getElementById("subjectSel"); + for (var branch in semObject) { + branchSel.options[branchSel.options.length] = new Option(branch, branch); + } + branchSel.onchange = function() { + semSel.length = 1; // remove all options bar first + subjectSel.length = 1; // remove all options bar first + if (this.selectedIndex < 1) return; // done + for (var sem in semObject[this.value]) { + semSel.options[semSel.options.length] = new Option(sem, sem); + } + } + branchSel.onchange(); // reset in case page is reloaded + semSel.onchange = function() { + subjectSel.length = 1; // remove all options bar first + if (this.selectedIndex < 1) return; // done + var subject = semObject[branchSel.value][this.value]; + for (var i = 0; i < subject.length; i++) { + subjectSel.options[subjectSel.options.length] = new Option(subject[i], subject[i]); + } + } +} \ No newline at end of file diff --git a/assets/js/fullscreen.js b/assets/js/fullscreen.js new file mode 100755 index 0000000..00ca917 --- /dev/null +++ b/assets/js/fullscreen.js @@ -0,0 +1,18 @@ +function modal(e){ + + // Get the modal + var modal = document.getElementById("myModal"); + + // Get the image and insert it inside the modal - use its "alt" text as a caption + var img = event.target; + var modalImg = document.getElementById("img01"); + + modal.style.display = "block"; + modalImg.src = img.src; + // Get the element that closes the modal + var span = document.getElementsByClassName("close")[0]; + + // When the user clicks on (x), close the modal + span.onclick = function() { + modal.style.display = "none"; + }} \ No newline at end of file diff --git a/assets/js/header.js b/assets/js/header.js new file mode 100755 index 0000000..1d504d8 --- /dev/null +++ b/assets/js/header.js @@ -0,0 +1,19 @@ +/* Set the width of the sidebar to 250px (show it) */ +// Create a media condition that targets viewports at least 768px wide +const mediaQuery = window.matchMedia('(max-width: 768px)') + +// Check if the media query is true +if (mediaQuery.matches) { + function openNav() { + document.getElementById("mySidepanel").style.width = "100%"; + } +} else { + function openNav() { + document.getElementById("mySidepanel").style.width = "30vh"; + } +} + +/* Set the width of the sidebar to 0 (hide it) */ +function closeNav() { + document.getElementById("mySidepanel").style.width = "0vh"; +} \ No newline at end of file diff --git a/assets/js/jquery.js b/assets/js/jquery.js new file mode 100755 index 0000000..a1c07fd --- /dev/null +++ b/assets/js/jquery.js @@ -0,0 +1,2 @@ +/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],E=C.document,r=Object.getPrototypeOf,s=t.slice,g=t.concat,u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.4.1",k=function(e,t){return new k.fn.init(e,t)},p=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;function d(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp($),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+$),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ne=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(m.childNodes),m.childNodes),t[m.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&((e?e.ownerDocument||e:m)!==C&&T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!A[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&U.test(t)){(s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=k),o=(l=h(t)).length;while(o--)l[o]="#"+s+" "+xe(l[o]);c=l.join(","),f=ee.test(t)&&ye(e.parentNode)||e}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){A(t,!0)}finally{s===k&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[k]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:m;return r!==C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),m!==C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=k,!C.getElementsByName||!C.getElementsByName(k).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+k+"-]").length||v.push("~="),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+k+"+*").length||v.push(".#.+[+~]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",$)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e===C||e.ownerDocument===m&&y(m,e)?-1:t===C||t.ownerDocument===m&&y(m,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===C?-1:t===C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]===m?-1:s[r]===m?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if((e.ownerDocument||e)!==C&&T(e),d.matchesSelector&&E&&!A[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){A(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=p[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&p(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?k.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?k.grep(e,function(e){return e===n!==r}):"string"!=typeof n?k.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(k.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:L.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof k?t[0]:t,k.merge(this,k.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),D.test(r[1])&&k.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(k):k.makeArray(e,this)}).prototype=k.fn,q=k(E);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}k.fn.extend({has:function(e){var t=k(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?k.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;nx",y.noCloneChecked=!!me.cloneNode(!0).lastChild.defaultValue;var Te=/^key/,Ce=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ee=/^([^.]*)(?:\.(.+)|)/;function ke(){return!0}function Se(){return!1}function Ne(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function Ae(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Ae(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Se;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return k().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=k.guid++)),e.each(function(){k.event.add(this,t,i,r,n)})}function De(e,i,o){o?(Q.set(e,i,!1),k.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Q.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(k.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Q.set(this,i,r),t=o(this,i),this[i](),r!==(n=Q.get(this,i))||t?Q.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n.value}else r.length&&(Q.set(this,i,{value:k.event.trigger(k.extend(r[0],k.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Q.get(e,i)&&k.event.add(e,i,ke)}k.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.get(t);if(v){n.handler&&(n=(o=n).handler,i=o.selector),i&&k.find.matchesSelector(ie,i),n.guid||(n.guid=k.guid++),(u=v.events)||(u=v.events={}),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof k&&k.event.triggered!==e.type?k.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(R)||[""]).length;while(l--)d=g=(s=Ee.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=k.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=k.event.special[d]||{},c=k.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),k.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.hasData(e)&&Q.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(R)||[""]).length;while(l--)if(d=g=(s=Ee.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=k.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||k.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)k.event.remove(e,d+t[l],n,r,!0);k.isEmptyObject(u)&&Q.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=k.event.fix(e),u=new Array(arguments.length),l=(Q.get(this,"events")||{})[s.type]||[],c=k.event.special[s.type]||{};for(u[0]=s,t=1;t\x20\t\r\n\f]*)[^>]*)\/>/gi,qe=/\s*$/g;function Oe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&k(e).children("tbody")[0]||e}function Pe(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Re(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Me(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(Q.hasData(e)&&(o=Q.access(e),a=Q.set(t,o),l=o.events))for(i in delete a.handle,a.events={},l)for(n=0,r=l[i].length;n")},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=oe(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||k.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Vt,Gt=[],Yt=/(=)\?(?=&|$)|\?\?/;k.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Gt.pop()||k.expando+"_"+kt++;return this[e]=!0,e}}),k.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Yt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Yt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Yt,"$1"+r):!1!==e.jsonp&&(e.url+=(St.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||k.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?k(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Gt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Vt=E.implementation.createHTMLDocument("").body).innerHTML="
",2===Vt.childNodes.length),k.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=D.exec(e))?[t.createElement(i[1])]:(i=we([e],t,o),o&&o.length&&k(o).remove(),k.merge([],i.childNodes)));var r,i,o},k.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(k.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},k.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){k.fn[t]=function(e){return this.on(t,e)}}),k.expr.pseudos.animated=function(t){return k.grep(k.timers,function(e){return t===e.elem}).length},k.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=k.css(e,"position"),c=k(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=k.css(e,"top"),u=k.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,k.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},k.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){k.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===k.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===k.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=k(e).offset()).top+=k.css(e,"borderTopWidth",!0),i.left+=k.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-k.css(r,"marginTop",!0),left:t.left-i.left-k.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===k.css(e,"position"))e=e.offsetParent;return e||ie})}}),k.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;k.fn[t]=function(e){return _(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),k.each(["top","left"],function(e,n){k.cssHooks[n]=ze(y.pixelPosition,function(e,t){if(t)return t=_e(e,n),$e.test(t)?k(e).position()[n]+"px":t})}),k.each({Height:"height",Width:"width"},function(a,s){k.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){k.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return _(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?k.css(e,t,i):k.style(e,t,n,i)},s,n?e:void 0,n)}})}),k.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){k.fn[n]=function(e,t){return 0 diff --git a/ct_marks.php b/ct_marks.php new file mode 100755 index 0000000..97bccf3 --- /dev/null +++ b/ct_marks.php @@ -0,0 +1,195 @@ + + +
+
+ +
+ +
+
+ + +
+
+ +
+
+ + + + +
+
+ +query($query); + ?> + + +
+
+ + +
+
+ +
+
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameSubjectCT 1CT 2EditDelete
1MarkOtto@mdoeditdlt
1MarkOtto@mdoeditdlt
1MarkOtto@mdoeditdlt
1MarkOtto@mdoeditdlt
1MarkOtto@mdoeditdlt
1MarkOtto@mdoeditdlt
1MarkOtto@mdoeditdlt
1MarkOtto@mdoeditdlt
1MarkOtto@mdoeditdlt
1MarkOtto@mdoeditdlt
1MarkOtto@mdoeditdlt
1MarkOtto@mdoeditdlt
1MarkOtto@mdoeditdlt
1MarkOtto@mdoeditdlt
+
+
+
\ No newline at end of file diff --git a/dashboard.php b/dashboard.php new file mode 100755 index 0000000..9a167b8 --- /dev/null +++ b/dashboard.php @@ -0,0 +1,162 @@ + + +
+
+ + + +
+
Attendance
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
theorylabBOAtotalpercentage
coitdeldm2dbmsjavafmefme labminor projectai labdbms lab
100%
%
+
+ +
+
+ + +
+ + +
+
CT Marks
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
s.no.subjectclass test 1class test 2
1.
2.
3.
4.
5.
6.
+
+
+
\ No newline at end of file diff --git a/database/cc.sql b/database/cc.sql new file mode 100755 index 0000000..cc8976b --- /dev/null +++ b/database/cc.sql @@ -0,0 +1,380 @@ +-- phpMyAdmin SQL Dump +-- version 5.0.2 +-- https://www.phpmyadmin.net/ +-- +-- Host: 127.0.0.1 +-- Generation Time: Sep 30, 2020 at 04:15 AM +-- Server version: 10.4.13-MariaDB +-- PHP Version: 7.2.32 + +SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; +START TRANSACTION; +SET time_zone = "+00:00"; + + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8mb4 */; + +-- +-- Database: `cc` +-- + +-- -------------------------------------------------------- + +-- +-- Table structure for table `admin_sign_in` +-- + +CREATE TABLE `admin_sign_in` ( + `id` int(11) NOT NULL, + `name` varchar(50) NOT NULL, + `email` varchar(200) NOT NULL, + `pass` varchar(50) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +-- +-- Dumping data for table `admin_sign_in` +-- + +INSERT INTO `admin_sign_in` (`id`, `name`, `email`, `pass`) VALUES +(1, 'Admin', 'yogesh@gmail.com', '12345'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `attendance` +-- + +CREATE TABLE `attendance` ( + `id` int(11) NOT NULL, + `email` varchar(200) NOT NULL, + `sub_1` int(200) NOT NULL, + `sub_2` int(200) NOT NULL, + `sub_3` int(200) NOT NULL, + `sub_4` int(200) NOT NULL, + `sub_5` int(200) NOT NULL, + `sub_6` int(200) NOT NULL, + `lab_1` int(200) NOT NULL, + `lab_2` int(200) NOT NULL, + `lab_3` int(200) NOT NULL, + `lab_4` int(200) NOT NULL, + `boa` int(255) NOT NULL, + `total` int(255) NOT NULL, + `percent` int(100) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +-- +-- Dumping data for table `attendance` +-- + +INSERT INTO `attendance` (`id`, `email`, `sub_1`, `sub_2`, `sub_3`, `sub_4`, `sub_5`, `sub_6`, `lab_1`, `lab_2`, `lab_3`, `lab_4`, `boa`, `total`, `percent`) VALUES +(1, 'nishu@gmail.com', 12, 34, 12, 34, 12, 10, 3, 6, 5, 4, 56, 200, 57), +(2, 'teshu@gmail.com', 23, 45, 45, 34, 35, 45, 5, 3, 2, 3, 56, 123, 45), +(3, 'yogesh@gmail.com', 23, 43, 23, 12, 34, 0, 3, 4, 2, 0, 45, 134, 56), +(4, 'manoj@gmail.com', 34, 45, 57, 45, 67, 0, 4, 6, 7, 0, 67, 167, 87); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `banner` +-- + +CREATE TABLE `banner` ( + `id` int(11) NOT NULL, + `title` varchar(50) NOT NULL, + `event_banner` varchar(255) NOT NULL, + `comment` text DEFAULT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +-- +-- Dumping data for table `banner` +-- + +INSERT INTO `banner` (`id`, `title`, `event_banner`, `comment`) VALUES +(33, 'agresita', 'agresita-1.jpg', 'Agresita, a new initiative and visionary techfest, celebrating its second edition in SSIPMT Raipur, an uprising fest of central India. '), +(34, 'video making', 'video-1.jpg', ''); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `class_test` +-- + +CREATE TABLE `class_test` ( + `id` int(11) NOT NULL, + `branch` varchar(50) NOT NULL, + `semester` int(8) NOT NULL, + `sub_1` varchar(200) NOT NULL, + `sub_2` varchar(200) NOT NULL, + `sub_3` varchar(200) NOT NULL, + `sub_4` varchar(200) NOT NULL, + `sub_5` varchar(200) NOT NULL, + `sub_6` varchar(200) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +-- +-- Dumping data for table `class_test` +-- + +INSERT INTO `class_test` (`id`, `branch`, `semester`, `sub_1`, `sub_2`, `sub_3`, `sub_4`, `sub_5`, `sub_6`) VALUES +(6, 'it', 7, 'Data Mining & Warehousing', '\r\nManagement Information System & IT', '\r\nArtificial Intelligence & Expert Systems', '\r\nCryptography & Network Security', '\r\nAdvanced computer architecture', ''); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `ct1_marks` +-- + +CREATE TABLE `ct1_marks` ( + `id` int(11) NOT NULL, + `email` varchar(200) NOT NULL, + `sub_1` int(40) NOT NULL, + `sub_2` int(40) NOT NULL, + `sub_3` int(40) NOT NULL, + `sub_4` int(40) NOT NULL, + `sub_5` int(40) NOT NULL, + `sub_6` int(40) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +-- +-- Dumping data for table `ct1_marks` +-- + +INSERT INTO `ct1_marks` (`id`, `email`, `sub_1`, `sub_2`, `sub_3`, `sub_4`, `sub_5`, `sub_6`) VALUES +(75, 'teshu@gmail.com', 23, 32, 12, 31, 28, 21), +(76, 'nishu@gmail.com', 32, 12, 32, 12, 12, 23), +(77, 'teshu@gmail.com', 23, 32, 12, 31, 28, 21), +(78, 'nishu@gmail.com', 32, 12, 32, 12, 12, 23); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `ct2_marks` +-- + +CREATE TABLE `ct2_marks` ( + `id` int(11) NOT NULL, + `email` varchar(200) NOT NULL, + `sub_1` int(40) NOT NULL, + `sub_2` int(40) NOT NULL, + `sub_3` int(40) NOT NULL, + `sub_4` int(40) NOT NULL, + `sub_5` int(40) NOT NULL, + `sub_6` int(40) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +-- +-- Dumping data for table `ct2_marks` +-- + +INSERT INTO `ct2_marks` (`id`, `email`, `sub_1`, `sub_2`, `sub_3`, `sub_4`, `sub_5`, `sub_6`) VALUES +(1, 'yogesh@gmail.com', 34, 24, 34, 12, 21, 0), +(2, 'manoj@gmail.com', 23, 22, 23, 24, 25, 0); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `sign_in` +-- + +CREATE TABLE `sign_in` ( + `id` int(11) NOT NULL, + `email` varchar(100) NOT NULL, + `pass` varchar(100) NOT NULL, + `user_name` varchar(100) NOT NULL, + `branch` varchar(50) NOT NULL, + `semester` int(8) NOT NULL, + `profile_pic` varchar(1000) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +-- +-- Dumping data for table `sign_in` +-- + +INSERT INTO `sign_in` (`id`, `email`, `pass`, `user_name`, `branch`, `semester`, `profile_pic`) VALUES +(0, 'teshu@gmail.com', '12345', 'teshu gaurav singh', 'it', 4, 'Spider-Man.jpg'), +(1, 'yogesh@gmail.com', '12345', 'yogesh rajak', 'it', 7, 'iron-man.jpg'), +(2, 'manoj@gmail.com', '12345', 'manoj karkey', 'it', 7, 'deadpool.jpg'), +(3, 'nishu@gmail.com', '1234', 'nishant kumar tripathi', 'civil', 4, 'profile.jpg'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `subjects` +-- + +CREATE TABLE `subjects` ( + `id` int(11) NOT NULL, + `branch` varchar(50) NOT NULL, + `semester` int(8) NOT NULL, + `sub_1` varchar(50) NOT NULL, + `sub_2` varchar(50) NOT NULL, + `sub_3` varchar(50) NOT NULL, + `sub_4` varchar(50) NOT NULL, + `sub_5` varchar(50) NOT NULL, + `sub_6` varchar(50) NOT NULL, + `lab_1` varchar(50) NOT NULL, + `lab_2` varchar(50) NOT NULL, + `lab_3` varchar(50) NOT NULL, + `lab_4` varchar(50) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +-- +-- Dumping data for table `subjects` +-- + +INSERT INTO `subjects` (`id`, `branch`, `semester`, `sub_1`, `sub_2`, `sub_3`, `sub_4`, `sub_5`, `sub_6`, `lab_1`, `lab_2`, `lab_3`, `lab_4`) VALUES +(1, 'it', 7, 'dmw', 'mis', 'ai', 'cns', 'aca', '', 'ai lab', 'ns+android', 'minor project', ''), +(2, 'it', 4, 'cm', 'tscn', 'dsa', 'aec', 'c++', 'coa', 'tscn', 'c++', 'aec', 'ds'), +(3, 'civil', 4, 'sa1', 'fm2', 's2', 'ced', 'bc', 'te1', 'fm2', 'sfw2', 'cew', 'te1'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `total_attendence` +-- + +CREATE TABLE `total_attendence` ( + `id` int(11) NOT NULL, + `branch` varchar(50) NOT NULL, + `semester` int(8) NOT NULL, + `sub_1` int(200) NOT NULL, + `sub_2` int(200) NOT NULL, + `sub_3` int(200) NOT NULL, + `sub_4` int(200) NOT NULL, + `sub_5` int(200) NOT NULL, + `sub_6` int(200) NOT NULL, + `lab_1` int(200) NOT NULL, + `lab_2` int(200) NOT NULL, + `lab_3` int(200) NOT NULL, + `lab_4` int(200) NOT NULL, + `boa` int(200) NOT NULL, + `total` int(255) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; + +-- +-- Dumping data for table `total_attendence` +-- + +INSERT INTO `total_attendence` (`id`, `branch`, `semester`, `sub_1`, `sub_2`, `sub_3`, `sub_4`, `sub_5`, `sub_6`, `lab_1`, `lab_2`, `lab_3`, `lab_4`, `boa`, `total`) VALUES +(1, 'it', 7, 34, 34, 23, 40, 22, 0, 8, 8, 7, 0, 70, 145), +(2, 'civil', 4, 23, 22, 34, 31, 30, 29, 7, 6, 8, 7, 40, 145), +(3, 'it', 4, 34, 23, 35, 32, 23, 43, 5, 6, 7, 8, 70, 145); + +-- +-- Indexes for dumped tables +-- + +-- +-- Indexes for table `admin_sign_in` +-- +ALTER TABLE `admin_sign_in` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `attendance` +-- +ALTER TABLE `attendance` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `banner` +-- +ALTER TABLE `banner` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `class_test` +-- +ALTER TABLE `class_test` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `id` (`id`); + +-- +-- Indexes for table `ct1_marks` +-- +ALTER TABLE `ct1_marks` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `ct2_marks` +-- +ALTER TABLE `ct2_marks` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `sign_in` +-- +ALTER TABLE `sign_in` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `subjects` +-- +ALTER TABLE `subjects` + ADD PRIMARY KEY (`id`); + +-- +-- Indexes for table `total_attendence` +-- +ALTER TABLE `total_attendence` + ADD PRIMARY KEY (`id`); + +-- +-- AUTO_INCREMENT for dumped tables +-- + +-- +-- AUTO_INCREMENT for table `admin_sign_in` +-- +ALTER TABLE `admin_sign_in` + MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; + +-- +-- AUTO_INCREMENT for table `attendance` +-- +ALTER TABLE `attendance` + MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; + +-- +-- AUTO_INCREMENT for table `banner` +-- +ALTER TABLE `banner` + MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=35; + +-- +-- AUTO_INCREMENT for table `class_test` +-- +ALTER TABLE `class_test` + MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; + +-- +-- AUTO_INCREMENT for table `ct1_marks` +-- +ALTER TABLE `ct1_marks` + MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=79; + +-- +-- AUTO_INCREMENT for table `ct2_marks` +-- +ALTER TABLE `ct2_marks` + MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; + +-- +-- AUTO_INCREMENT for table `subjects` +-- +ALTER TABLE `subjects` + MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; + +-- +-- AUTO_INCREMENT for table `total_attendence` +-- +ALTER TABLE `total_attendence` + MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; +COMMIT; + +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; diff --git a/event.php b/event.php new file mode 100755 index 0000000..5a7fcf5 --- /dev/null +++ b/event.php @@ -0,0 +1,81 @@ + +events + +
+
+
+ +
+
+
+ + +
+
+ +"; + echo "
"; + echo"
"; + echo "

".$row['title']."

"; + echo''; + echo''; + + echo"
"; + echo"
"; + echo "

Description:

"; + echo "

".$row['comment']."

"; + echo"Register here..."; + echo"
"; + echo"
"; + echo"
"; + echo''; + } + + + ?> +
+ + \ No newline at end of file diff --git a/get_details.php b/get_details.php new file mode 100755 index 0000000..4e179c8 --- /dev/null +++ b/get_details.php @@ -0,0 +1,46 @@ + + diff --git a/getdata.php b/getdata.php new file mode 100755 index 0000000..15a42f5 --- /dev/null +++ b/getdata.php @@ -0,0 +1,19 @@ + diff --git a/header.php b/header.php new file mode 100755 index 0000000..f076a5d --- /dev/null +++ b/header.php @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/new.php b/new.php new file mode 100755 index 0000000..1dc80e4 --- /dev/null +++ b/new.php @@ -0,0 +1,47 @@ + + + + +
' method='post' name='form_filter' > + + while ($row = mysqli_fetch_array($result2)) { + +
+ +
+ + \ No newline at end of file diff --git a/notes.php b/notes.php new file mode 100755 index 0000000..82a4d37 --- /dev/null +++ b/notes.php @@ -0,0 +1,91 @@ + + + +
+
+ + +
+ +
+ + +
+
+ + +
+
+
+
+ + + + + + + + + "; + echo ''; + echo ''; + echo ''; + //download + echo ''; + echo ''; + echo ''; + echo ''; + + echo ''; + while ($row = mysqli_fetch_array($result2)) { + echo ''; + echo ''; + echo ''; + echo ''; + } + echo ''; + echo '
downloadaction
' . $row['notes'] . ' + + +
'; + echo ""; + + + ?> + + + + + + + diff --git a/notice.php b/notice.php new file mode 100755 index 0000000..69dae20 --- /dev/null +++ b/notice.php @@ -0,0 +1,82 @@ + + +notice + +
+
+
+ +
+
+
+ + +
+
+ +"; + echo "
"; + echo"
"; + echo "

".$row['title']."

"; + echo''; + echo''; + + echo"
"; + echo"
"; + echo "

Description:

"; + echo "

Date:".$row['date']."

"; + echo "

".$row['comment']."

"; + echo"
"; + echo"
"; + echo"
"; + echo''; + } + + + ?> +
+ + \ No newline at end of file diff --git a/signin.php b/signin.php new file mode 100755 index 0000000..ec9138b --- /dev/null +++ b/signin.php @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + Relier + + +
+
+ +
+ +
+
+

Welcome

+
+
+ + + We'll never share your email with anyone else. +
+
+ + +
+
+ +
+
+
+
+
+ 0){ + $_SESSION['username']=$email; + header('location:dashboard.php'); + } + else + { + header('location:signin.php'); + } + } + + ?> + + + + + + + + + diff --git a/signout.php b/signout.php new file mode 100755 index 0000000..afa2099 --- /dev/null +++ b/signout.php @@ -0,0 +1,5 @@ + \ No newline at end of file