Compare commits
	
		
			4 Commits 
		
	
	
		
			Hui-Organi
			...
			Bug37-Dmyt
		
	
	| Author | SHA1 | Date | 
|---|---|---|
| 
							
							
								
									
								
								 | 
						6acac2dbc7 | |
| 
							
							
								 | 
						18a41dd1bb | |
| 
							
							
								 | 
						036489041f | |
| 
							
							
								 | 
						207d12a4a3 | 
							
								
								
									
										257
									
								
								Courses.php
								
								
								
								
							
							
						
						
									
										257
									
								
								Courses.php
								
								
								
								
							| 
						 | 
					@ -7,19 +7,18 @@ include 'NoDirectPhpAcess.php';
 | 
				
			||||||
$page = 'Courses';
 | 
					$page = 'Courses';
 | 
				
			||||||
include 'Header.php';
 | 
					include 'Header.php';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					echo "<main role='main' class='container bg-white' style='margin-top: 20px;'>";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
$user_d = $_SESSION['user_id'];
 | 
					$user_d = $_SESSION['user_id'];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if ($_SESSION['user_type'] == "Lecturer" || $_SESSION['user_type'] == "TA") {
 | 
					if ($_SESSION['user_type'] == "Lecturer" || $_SESSION['user_type'] == "TA") {
 | 
				
			||||||
    ?>
 | 
					    ?>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <!--    FOR LECTURER-->
 | 
					        <!--    FOR LECTURER-->
 | 
				
			||||||
 
 | 
					 
 | 
				
			||||||
        <div class="row" style="width:80%;margin:auto; text-align:left;">
 | 
					        <div class="row" style="width:80%;margin:auto; text-align:left;">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <script src="./css/jquery-1.11.1.min.js"></script>
 | 
					 | 
				
			||||||
        <script src="./css/jquery-ui.min.js"></script>
 | 
					 | 
				
			||||||
        <link rel="stylesheet" href="./css/jquery-ui.css" />
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                <script>
 | 
					                <script>
 | 
				
			||||||
                function extend_deadline(id) {
 | 
					                function extend_deadline(id) {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -259,6 +258,7 @@ New Date/Time <br><input type="date" name="date" required=""> <input type="time"
 | 
				
			||||||
                if (mysqli_num_rows($result) == 0) {
 | 
					                if (mysqli_num_rows($result) == 0) {
 | 
				
			||||||
                    echo "No assignments posted so far.";
 | 
					                    echo "No assignments posted so far.";
 | 
				
			||||||
                } else {
 | 
					                } else {
 | 
				
			||||||
 | 
					                    echo "<div class='row'><div class='col-sm-6'>";
 | 
				
			||||||
                    while ($row = mysqli_fetch_assoc($result)) {
 | 
					                    while ($row = mysqli_fetch_assoc($result)) {
 | 
				
			||||||
                        $marks = $row['Marks'];
 | 
					                        $marks = $row['Marks'];
 | 
				
			||||||
                        $title = $row['Title'];
 | 
					                        $title = $row['Title'];
 | 
				
			||||||
| 
						 | 
					@ -275,14 +275,14 @@ New Date/Time <br><input type="date" name="date" required=""> <input type="time"
 | 
				
			||||||
                        $full_link = "<a href='~\..\Lab_Report_Assignments\\$att1'>$att1</a>";
 | 
					                        $full_link = "<a href='~\..\Lab_Report_Assignments\\$att1'>$att1</a>";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                        if ($att2 != "") {
 | 
					                        if ($att2 != "") {
 | 
				
			||||||
                        $full_link = $full_link . "  |  <a href='~\..\Lab_Report_Assignments\\$att2'>$att2</a>";
 | 
					                            $full_link = $full_link . " <a class='card-link' href='~\..\Lab_Report_Assignments\\$att2'>$att2</a>";
 | 
				
			||||||
                        }
 | 
					                        }
 | 
				
			||||||
                        if ($att3 != "") {
 | 
					                        if ($att3 != "") {
 | 
				
			||||||
                        $full_link = $full_link . "  |  <a href='~\..\Lab_Report_Assignments\\$att3'>$att3</a>";
 | 
					                            $full_link = $full_link . " <a class='card-link' href='~\..\Lab_Report_Assignments\\$att3'>$att3</a>";
 | 
				
			||||||
                        }
 | 
					                        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                        if ($att4 != "") {
 | 
					                        if ($att4 != "") {
 | 
				
			||||||
                        $full_link = $full_link . "   |   <a href='~\..\Lab_Report_Assignments\\$att4'>$att4</a>";
 | 
					                            $full_link = $full_link . " <a class='card-link' href='~\..\Lab_Report_Assignments\\$att4'>$att4</a>";
 | 
				
			||||||
                        }
 | 
					                        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                        $resultx1 = mysqli_query($con, "Select Count(*) as cnt from lab_report_submissions where lab_report_submissions.Lab_Report_ID=$id");
 | 
					                        $resultx1 = mysqli_query($con, "Select Count(*) as cnt from lab_report_submissions where lab_report_submissions.Lab_Report_ID=$id");
 | 
				
			||||||
| 
						 | 
					@ -301,18 +301,37 @@ New Date/Time <br><input type="date" name="date" required=""> <input type="time"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                        $header = "Courses > " . $name . "($code) > Assignments > " . $title;
 | 
					                        $header = "Courses > " . $name . "($code) > Assignments > " . $title;
 | 
				
			||||||
 
 | 
					 
 | 
				
			||||||
                    echo "      <div class='break-word btn btn-default' style='word-wrap: break-word;border-color:grey;'>
 | 
					 | 
				
			||||||
  $title ($as_type) <br> $ins
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
   <br> <span style='font-size:8pt'>Posted : $posted  Deadline :  <b> $deadline </b>   ($marks Marks)                     "
 | 
					                        echo"<div class='card' style='width: 18rem;'> 
 | 
				
			||||||
                        . "<br>"
 | 
					                              <div class='card-body'>
 | 
				
			||||||
 | 
					                                <h5 class='card-title'>$title ($as_type)</h5>
 | 
				
			||||||
 | 
					                                <p class='card-text'>$ins</p>
 | 
				
			||||||
 | 
					                              </div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                        . "<span class='btn-default'>    $count_subs Submissions ( $count_marked Marked )       <a href='Courses.php?course=" . $url . "&act=edit&cid=" . $id . "'>Edit</a>   |  <a href='~\..\Submissions.php?id=$id&header=$header&total=$marks' onclick=''> View </a>        |           <a href='#'  onclick='extend_deadline($id)'> Extend Deadline </a>  </span>         <hr> Attachments : $full_link </span>"
 | 
					                              <ul class='list-group list-group-flush'>
 | 
				
			||||||
                        . "  </div>
 | 
					                                <li class='list-group-item'>Posted : $posted</li>
 | 
				
			||||||
                        ";
 | 
					                                <li class='list-group-item'>Deadline : <b> $deadline </b></li>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                                <li class='list-group-item'>
 | 
				
			||||||
 | 
					                                <div class='dropdown show'>
 | 
				
			||||||
 | 
					                                  <a class='btn btn-secondary dropdown-toggle'  id='dropdownMenuLink' data-toggle='dropdown'  >
 | 
				
			||||||
 | 
					                                    Action
 | 
				
			||||||
 | 
					                                  </a>
 | 
				
			||||||
 | 
					                                  <div class='dropdown-menu' aria-labelledby='dropdownMenuLink'>
 | 
				
			||||||
 | 
					                                    <a class='dropdown-item' href='Courses.php?course= $url &act=edit&cid= $id' >Edit</button>
 | 
				
			||||||
 | 
					                                    <a class='dropdown-item' href='~\..\Submissions.php?id=$id&header=$header&total=$a' onclick='' >View action</a>
 | 
				
			||||||
 | 
					                                    <a class='dropdown-item' href='#' onclick='extend_deadline($id)'>Extend Deadline</a>
 | 
				
			||||||
 | 
					                                  </div>
 | 
				
			||||||
 | 
					                                </div>
 | 
				
			||||||
 | 
					                                </li>  
 | 
				
			||||||
 | 
					                              </ul>
 | 
				
			||||||
 | 
					                              <div class='card-body'>
 | 
				
			||||||
 | 
					                                $full_link
 | 
				
			||||||
 | 
					                              </div>
 | 
				
			||||||
 | 
					                            </div> ";
 | 
				
			||||||
                    }
 | 
					                    }
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
            echo "</div>";
 | 
					                echo "</div></div></div>";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                $resultx1 = mysqli_query($con, "SELECT course_students_table.Student_ID,users_table.Full_Name FROM 
 | 
					                $resultx1 = mysqli_query($con, "SELECT course_students_table.Student_ID,users_table.Full_Name FROM 
 | 
				
			||||||
                    `course_students_table`
 | 
					                    `course_students_table`
 | 
				
			||||||
| 
						 | 
					@ -359,6 +378,8 @@ course_ta ON course_ta.Course_ID=courses_table.Course_ID where course_ta.TA=$use
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                if (mysqli_num_rows($result) == 0) {
 | 
					                if (mysqli_num_rows($result) == 0) {
 | 
				
			||||||
                } else {
 | 
					                } else {
 | 
				
			||||||
 | 
					                     
 | 
				
			||||||
 | 
					                        echo "<div class='list-group'>";
 | 
				
			||||||
                    while ($row = mysqli_fetch_assoc($result)) {
 | 
					                    while ($row = mysqli_fetch_assoc($result)) {
 | 
				
			||||||
                        $id = $row['Course_ID'];
 | 
					                        $id = $row['Course_ID'];
 | 
				
			||||||
                        $name = $row['Course_Name'];
 | 
					                        $name = $row['Course_Name'];
 | 
				
			||||||
| 
						 | 
					@ -378,15 +399,17 @@ where course_ta.Course_ID=$id");
 | 
				
			||||||
                        }
 | 
					                        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                        echo "    
 | 
					                        echo "    
 | 
				
			||||||
                  
 | 
					                        <a href='~\..\Courses.php?course=$url' class='list-group-item list-group-item-action flex-column align-items-start'>
 | 
				
			||||||
                         <a href='~\..\Courses.php?course=$url'>   <div class='btn btn-default'>
 | 
					                            <div class='d-flex w-100 justify-content-between'>
 | 
				
			||||||
  ($code) - $name 
 | 
					                              <h5 class='mb-1'>($code) - $name </h5> 
 | 
				
			||||||
   <br> <span style='font-size:8pt'>Faculty : $faculty        Year :  $academic          Lecturer  :$lecturer          TA:$ta </span>
 | 
					                            </div>
 | 
				
			||||||
</div></a>
 | 
					                            <p class='mb-1'>Faculty : $faculty   Year :  $academic   Lecturer  :$lecturer    TA:$ta </p> 
 | 
				
			||||||
                        ";
 | 
					                        </a> ";
 | 
				
			||||||
                    }
 | 
					                    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                } ?>
 | 
					                } ?>
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
 | 
					            </div>
 | 
				
			||||||
            <div class="col-md-4">
 | 
					            <div class="col-md-4">
 | 
				
			||||||
                <br>
 | 
					                <br>
 | 
				
			||||||
                <b> Course Joining Requests </b>
 | 
					                <b> Course Joining Requests </b>
 | 
				
			||||||
| 
						 | 
					@ -469,24 +492,63 @@ if ($_SESSION['user_type'] == "Student") {
 | 
				
			||||||
            ?>
 | 
					            ?>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            <!--STUDENT CODE-->
 | 
					            <!--STUDENT CODE-->
 | 
				
			||||||
        <div class="row" style="width:80%;margin:auto; text-align:left;">
 | 
					            <div class="row">
 | 
				
			||||||
 | 
					                <div class='col-md-1'></div> 
 | 
				
			||||||
                <div class="col-md-6">
 | 
					                <div class="col-md-6">
 | 
				
			||||||
                    <br> Course Portal > Students <br>
 | 
					                    <br> Course Portal > Students <br>
 | 
				
			||||||
                    <?php
 | 
					                    <?php
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                    error_reporting(0);
 | 
					                    error_reporting(0);
 | 
				
			||||||
                    if (isset($_SESSION['info_Courses_student'])) {
 | 
					                    if (isset($_SESSION['info_Courses_student'])) {
 | 
				
			||||||
                    echo '<hr><span class="alert alert-success" role="alert">' . $_SESSION['info_Courses_student'] . '</span>';
 | 
					                        echo '<hr><p class="alert alert-success" role="alert">' . $_SESSION['info_Courses_student'] . '</p>';
 | 
				
			||||||
                        $_SESSION['info_Courses_student'] = null;
 | 
					                        $_SESSION['info_Courses_student'] = null;
 | 
				
			||||||
                    }
 | 
					                    }
 | 
				
			||||||
                    ?>
 | 
					                    ?>
 | 
				
			||||||
                    <br><br>
 | 
					                    <br><br>
 | 
				
			||||||
                </div>
 | 
					                </div>
 | 
				
			||||||
            <div class="col-md-6"></div>
 | 
					                <div class="col-md-5"></div>
 | 
				
			||||||
 | 
					            </div> 
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					            <div class="p-4 my-4 bg-purple rounded shadow-sm"> 
 | 
				
			||||||
 | 
					     
 | 
				
			||||||
 | 
					                <div class="col-md-12">
 | 
				
			||||||
 | 
					                <?php
 | 
				
			||||||
 | 
					                    echo " 
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                    <form method='get' action='Courses.php'>
 | 
				
			||||||
 | 
					 
 | 
				
			||||||
 | 
					                    <div class='form-row'>
 | 
				
			||||||
 | 
					                        <div class='form-group col-md-6'>
 | 
				
			||||||
 | 
					                            <input type='text' class='form-control' name='search'  aria-label='Enter Course Code' placeholder='Enter Course Code'>
 | 
				
			||||||
 | 
					                        </div>
 | 
				
			||||||
 | 
					                        <div class='form-group col-md-4'> 
 | 
				
			||||||
 | 
					                            <select name='faculty' class='form-control' aria-label='Search by'><option selected value='' >Search by Faculty</option>";
 | 
				
			||||||
 | 
					                            $result = mysqli_query($con, "SELECT   DISTINCT(Faculty) as Faculty FROM `courses_table`");
 | 
				
			||||||
 | 
					                            if (mysqli_num_rows($result) == 0) {
 | 
				
			||||||
 | 
					                            } else {
 | 
				
			||||||
 | 
					                                while ($row = mysqli_fetch_assoc($result)) {
 | 
				
			||||||
 | 
					                                    $fname = $row['Faculty'];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                                    echo "<option value='$fname'>Faculty $fname </option>";
 | 
				
			||||||
 | 
					                                }
 | 
				
			||||||
 | 
					                            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                            echo "</select>
 | 
				
			||||||
 | 
					                        </div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                        <div class='form-group col-md-2'>
 | 
				
			||||||
 | 
					                            <button class='btn btn-primary' type='submit' >Find</button> 
 | 
				
			||||||
 | 
					                        </div>  
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                    </div> 
 | 
				
			||||||
 | 
					                    </form>";
 | 
				
			||||||
 | 
					                }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                ?>
 | 
				
			||||||
 | 
					                </div>
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
        <div class="row" style="width:80%;margin:auto; text-align:left;">
 | 
					 | 
				
			||||||
            <div class="col-md-6">
 | 
					 | 
				
			||||||
 
 | 
					 
 | 
				
			||||||
                    <?php
 | 
					                    <?php
 | 
				
			||||||
                    error_reporting(0);
 | 
					                    error_reporting(0);
 | 
				
			||||||
| 
						 | 
					@ -496,21 +558,24 @@ if ($_SESSION['user_type'] == "Student") {
 | 
				
			||||||
                        $faculty = $_GET["faculty"];
 | 
					                        $faculty = $_GET["faculty"];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                        if ($faculty == "") {
 | 
					                        if ($faculty == "") {
 | 
				
			||||||
                    echo "<h4> Search Results for Course Code $search</h4><hr>";
 | 
					                            echo "<div class='my-3 p-3 bg-body rounded shadow-sm'>  <div class='row' >    <div class='col-md-12'> ";
 | 
				
			||||||
 | 
					                            echo "<h4 class='border-bottom pb-2 mb-0'> Search Results for Course Code $search</h4>";
 | 
				
			||||||
                            $result = mysqli_query($con, "SELECT `Course_ID`, `Course_Name`, `Academic_Year`, `Faculty`,"
 | 
					                            $result = mysqli_query($con, "SELECT `Course_ID`, `Course_Name`, `Academic_Year`, `Faculty`,"
 | 
				
			||||||
                                . " `Lecturer_User_ID`, `TA_User_ID`, `Course_Code`, `URL`, `Verify_New_Members`  "
 | 
					                                . " `Lecturer_User_ID`, `TA_User_ID`, `Course_Code`, `URL`, `Verify_New_Members`  "
 | 
				
			||||||
                                . " , users_table.Full_Name  FROM `courses_table` INNER JOIN users_table"
 | 
					                                . " , users_table.Full_Name  FROM `courses_table` INNER JOIN users_table"
 | 
				
			||||||
                                . " ON users_table.User_ID=courses_table.Lecturer_User_ID where Course_Code like '%{$search}%' and courses_table.Course_ID not in (select course_id from course_students_table where Student_ID=$student_id)");
 | 
					                                . " ON users_table.User_ID=courses_table.Lecturer_User_ID where Course_Code like '%{$search}%' and courses_table.Course_ID not in (select course_id from course_students_table where Student_ID=$student_id)");
 | 
				
			||||||
                        } else {
 | 
					                        } else {
 | 
				
			||||||
                    echo "<h3> Find Courses under faculty $faculty</h3>";
 | 
					                            echo "<div class='my-3 p-3 bg-body rounded shadow-sm'>  <div class='row' >    <div class='col-md-12'> ";
 | 
				
			||||||
 | 
					                            echo "<h3 class='border-bottom pb-2 mb-0'> Find Courses under faculty $faculty</h3>";
 | 
				
			||||||
                            $result = mysqli_query($con, "SELECT `Course_ID`, `Course_Name`, `Academic_Year`, `Faculty`,
 | 
					                            $result = mysqli_query($con, "SELECT `Course_ID`, `Course_Name`, `Academic_Year`, `Faculty`,
 | 
				
			||||||
                             `Lecturer_User_ID`, `TA_User_ID`, `Course_Code`, `URL`, `Verify_New_Members` 
 | 
					                             `Lecturer_User_ID`, `TA_User_ID`, `Course_Code`, `URL`, `Verify_New_Members` 
 | 
				
			||||||
                             , users_table.Full_Name  FROM `courses_table` INNER JOIN users_table
 | 
					                             , users_table.Full_Name  FROM `courses_table` INNER JOIN users_table
 | 
				
			||||||
                             ON users_table.User_ID=courses_table.Lecturer_User_ID where Faculty='$faculty'  and courses_table.Course_ID not in (select course_id from course_students_table where Student_ID=$student_id)");
 | 
					                             ON users_table.User_ID=courses_table.Lecturer_User_ID where Faculty='$faculty'  and courses_table.Course_ID not in (select course_id from course_students_table where Student_ID=$student_id)");
 | 
				
			||||||
                        }
 | 
					                        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					               echo "<div class='row row-cols-1 row-cols-sm-2 row-cols-md-3 g-3'>";
 | 
				
			||||||
                        if (mysqli_num_rows($result) == 0) {
 | 
					                        if (mysqli_num_rows($result) == 0) {
 | 
				
			||||||
                    echo "No results found for your Search <hr>";
 | 
					                            echo "<h5>No results found for your Search <h5><hr>";
 | 
				
			||||||
                        } else {
 | 
					                        } else {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                            while ($row = mysqli_fetch_assoc($result)) {
 | 
					                            while ($row = mysqli_fetch_assoc($result)) {
 | 
				
			||||||
| 
						 | 
					@ -528,15 +593,42 @@ if ($_SESSION['user_type'] == "Student") {
 | 
				
			||||||
                                    $msg2 = "Send Joining Request";
 | 
					                                    $msg2 = "Send Joining Request";
 | 
				
			||||||
                                }
 | 
					                                }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                        echo "<div class='btn btn-default' style='word-wrap:break-word'>
 | 
					                                 echo "<div class='col'> 
 | 
				
			||||||
  [$code] $name <br>($url) <br>  <a href='~\..\Script.php?JoinCourse=y&id=$id&std=$student_id&joining=$v' class='btn-sm btn-success' onclick=return confirm(\"Are you sure to join this course?\")' > $msg2 </a>
 | 
					                                        <div class='card'>  
 | 
				
			||||||
   <br> <span style='font-size:10pt'>Faculty: $faculty | Year: $academic | Lecturer: $lecturer </span><br>$msg</div>
 | 
					                                            <div class='card-header'>
 | 
				
			||||||
                        ";
 | 
					                                                <ul class='nav nav-pills card-header-pills'>
 | 
				
			||||||
                    }
 | 
					                                                  <li class='nav-item'>
 | 
				
			||||||
 | 
					                                                    <h5 class='nav-link'> $name </h5>
 | 
				
			||||||
 | 
					                                                  </li>
 | 
				
			||||||
 | 
					                                                  <li class='nav-item'>
 | 
				
			||||||
 | 
					                                                    <p class='nav-link'>$msg</p>
 | 
				
			||||||
 | 
					                                                  </li> 
 | 
				
			||||||
 | 
					                                                </ul> 
 | 
				
			||||||
 | 
					                                            </div>
 | 
				
			||||||
 | 
					                                            <div class='card-body'>
 | 
				
			||||||
 | 
					                                              <h5 class='card-title'>$code</h5> 
 | 
				
			||||||
 | 
					                                              <p class='card-text'> $academic</p>
 | 
				
			||||||
 | 
					                                              <p class='card-text'>$faculty</p>
 | 
				
			||||||
 | 
					                                              <p class='card-text'>$lecturer</p>
 | 
				
			||||||
 | 
					                                              <a href='~\..\Script.php?JoinCourse=y&id=$id&std=$student_id&joining=$v' onclick=return confirm(\"Are you sure to join this course?\")' class='btn btn-success'>Open</a>
 | 
				
			||||||
 | 
					                                            </div>
 | 
				
			||||||
 | 
					                                        </div>
 | 
				
			||||||
 | 
					                                      </div>";
 | 
				
			||||||
 | 
					 
 | 
				
			||||||
                            }
 | 
					                            }
 | 
				
			||||||
                        }
 | 
					                        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            echo "<h4> My Courses </h4>";
 | 
					               echo "</div>";
 | 
				
			||||||
 | 
					                    }
 | 
				
			||||||
 | 
					                    ?>
 | 
				
			||||||
 | 
					</div>
 | 
				
			||||||
 | 
					</div>
 | 
				
			||||||
 | 
					</div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<div class="my-3 p-3 bg-body rounded shadow-sm">
 | 
				
			||||||
 | 
					    <h4 class="border-bottom pb-2 mb-0"> My Courses </h4>
 | 
				
			||||||
 | 
					        <div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-3"> 
 | 
				
			||||||
 | 
					                    <?php 
 | 
				
			||||||
                    $result = mysqli_query($con, "SELECT users_table.Full_Name, course_students_table.Status, courses_table.Course_ID, `Course_Name`, `Academic_Year`, `Faculty`, `Lecturer_User_ID`, `TA_User_ID`, `Course_Code`, `URL`, `Verify_New_Members` FROM `courses_table`
 | 
					                    $result = mysqli_query($con, "SELECT users_table.Full_Name, course_students_table.Status, courses_table.Course_ID, `Course_Name`, `Academic_Year`, `Faculty`, `Lecturer_User_ID`, `TA_User_ID`, `Course_Code`, `URL`, `Verify_New_Members` FROM `courses_table`
 | 
				
			||||||
                        INNER JOIN users_table
 | 
					                        INNER JOIN users_table
 | 
				
			||||||
                        ON users_table.User_ID=courses_table.Lecturer_User_ID
 | 
					                        ON users_table.User_ID=courses_table.Lecturer_User_ID
 | 
				
			||||||
| 
						 | 
					@ -546,7 +638,7 @@ INNER JOIN course_students_table on course_students_table.Course_ID=courses_tabl
 | 
				
			||||||
                        where course_students_table.Student_ID=$student_id");
 | 
					                        where course_students_table.Student_ID=$student_id");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                    if (mysqli_num_rows($result) == 0) {
 | 
					                    if (mysqli_num_rows($result) == 0) {
 | 
				
			||||||
                echo "<i class='fa fa-exclamation-circle'></i> You are not Enrolled in any Course";
 | 
					                        echo "<h4><i class='fa fa-exclamation-circle'></i> You are not Enrolled in any Course</h4>";
 | 
				
			||||||
                    } else {
 | 
					                    } else {
 | 
				
			||||||
                        while ($row = mysqli_fetch_assoc($result)) {
 | 
					                        while ($row = mysqli_fetch_assoc($result)) {
 | 
				
			||||||
                            $name = $row['Course_Name'];
 | 
					                            $name = $row['Course_Name'];
 | 
				
			||||||
| 
						 | 
					@ -558,59 +650,62 @@ INNER JOIN course_students_table on course_students_table.Course_ID=courses_tabl
 | 
				
			||||||
                            $id = $row['Course_ID'];
 | 
					                            $id = $row['Course_ID'];
 | 
				
			||||||
                            $Status = $row['Status'];
 | 
					                            $Status = $row['Status'];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                    ?>
 | 
				
			||||||
 | 
					          
 | 
				
			||||||
 | 
					             <?php 
 | 
				
			||||||
                            if ($Status == "Joined") {
 | 
					                            if ($Status == "Joined") {
 | 
				
			||||||
                        echo "<a href='~\..\Course.php?url=$url'>   <div class='btn btn-default' style='word-wrap:break-word'>
 | 
					                                echo "<div class='col'> 
 | 
				
			||||||
  ($code) - $name <br>($url)           <i class='fa fa-check-circle'></i> $Status        <a href='~\..\Course.php?url=$url' class='btn-sm btn-primary'> Open</a>
 | 
					                                        <div class='card'>  
 | 
				
			||||||
   <br> <span style='font-size:8pt'>Faculty : $faculty  Year :   $academic  Lecturer  :$lecturer </span></div></a>
 | 
					                                            <div class='card-header'>
 | 
				
			||||||
                        ";
 | 
					                                                <ul class='nav nav-pills card-header-pills'>
 | 
				
			||||||
 | 
					                                                  <li class='nav-item'>
 | 
				
			||||||
 | 
					                                                    <h5 class='nav-link'> $name </h5>
 | 
				
			||||||
 | 
					                                                  </li>
 | 
				
			||||||
 | 
					                                                  <li class='nav-item'>
 | 
				
			||||||
 | 
					                                                    <p class='nav-link bg-success'><i class='fa fa-check-circle'></i> $Status</p>
 | 
				
			||||||
 | 
					                                                  </li> 
 | 
				
			||||||
 | 
					                                                </ul> 
 | 
				
			||||||
 | 
					                                            </div>
 | 
				
			||||||
 | 
					                                            <div class='card-body'>
 | 
				
			||||||
 | 
					                                              <h5 class='card-title'>$code</h5> 
 | 
				
			||||||
 | 
					                                              <p class='card-text'> $academic</p>
 | 
				
			||||||
 | 
					                                              <p class='card-text'>$faculty</p>
 | 
				
			||||||
 | 
					                                              <p class='card-text'>$lecturer</p>
 | 
				
			||||||
 | 
					                                              <a href='~\..\Course.php?url=$url' class='btn btn-primary'>Open</a>
 | 
				
			||||||
 | 
					                                            </div>
 | 
				
			||||||
 | 
					                                            </div>
 | 
				
			||||||
 | 
					                                      </div>";
 | 
				
			||||||
                            } else { 
 | 
					                            } else { 
 | 
				
			||||||
                        echo "<div class='btn btn-default'>
 | 
					 | 
				
			||||||
  ($code) - $name  <i class='btn-sm btn-danger'> $Status</i>
 | 
					 | 
				
			||||||
   <br> <span style='font-size:8pt'>Faculty : $faculty  Year :   $academic  Lecturer  :$lecturer </span></div>
 | 
					 | 
				
			||||||
                        ";
 | 
					 | 
				
			||||||
                    }
 | 
					 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            echo "</div><div class='col-md-6'>
 | 
					 | 
				
			||||||
    
 | 
					 | 
				
			||||||
        <form method='get' action='Courses.php'>
 | 
					 | 
				
			||||||
            <div class='row'> 
 | 
					 | 
				
			||||||
            <div class='col-md-10'> 
 | 
					 | 
				
			||||||
            <div class='row'><div class='col-md-6'> Find course by Code
 | 
					 | 
				
			||||||
            <input  type='text' class='form-control' name='search' placeholder='Enter Course Code'>
 | 
					 | 
				
			||||||
            </div><div class='col-md-6'>
 | 
					 | 
				
			||||||
List courses by faculty
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
<select name='faculty' class='form-control'>";
 | 
					 | 
				
			||||||
            $result = mysqli_query($con, "SELECT   DISTINCT(Faculty) as Faculty FROM `courses_table`");
 | 
					 | 
				
			||||||
            if (mysqli_num_rows($result) == 0) {
 | 
					 | 
				
			||||||
            } else {
 | 
					 | 
				
			||||||
                while ($row = mysqli_fetch_assoc($result)) {
 | 
					 | 
				
			||||||
                    $fname = $row['Faculty'];
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                    echo "<option value=''> Search by faculty </option> <option value='$fname'> $fname </option>";
 | 
					 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            echo "</select></div></div>
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					                               echo "<div class='col'> 
 | 
				
			||||||
 | 
					                                        <div class='card'>  
 | 
				
			||||||
 | 
					                                            <div class='card-header'>
 | 
				
			||||||
 | 
					                                                <ul class='nav nav-pills card-header-pills'>
 | 
				
			||||||
 | 
					                                                  <li class='nav-item'>
 | 
				
			||||||
 | 
					                                                    <h5 class='nav-link'> $name </h5>
 | 
				
			||||||
 | 
					                                                  </li>
 | 
				
			||||||
 | 
					                                                  <li class='nav-item'>
 | 
				
			||||||
 | 
					                                                    <p class='nav-link btn-danger'><i class='fa fa-check-circle'></i> $Status</p>
 | 
				
			||||||
 | 
					                                                  </li> 
 | 
				
			||||||
 | 
					                                                </ul> 
 | 
				
			||||||
                                            </div>
 | 
					                                            </div>
 | 
				
			||||||
                 <div class='col-md-1'> <br>
 | 
					                                            <div class='card-body'>
 | 
				
			||||||
            <input type='submit' class='btn btn-primary' value='Find'>
 | 
					                                              <h5 class='card-title'>$code</h5> 
 | 
				
			||||||
 | 
					                                              <p class='card-text'> $academic</p>
 | 
				
			||||||
 | 
					                                              <p class='card-text'>$faculty</p>
 | 
				
			||||||
 | 
					                                              <p class='card-text'>$lecturer</p> 
 | 
				
			||||||
                                            </div>
 | 
					                                            </div>
 | 
				
			||||||
       
 | 
					 | 
				
			||||||
                                        </div>
 | 
					                                        </div>
 | 
				
			||||||
        </form>
 | 
					                                      </div>";
 | 
				
			||||||
 
 | 
					 
 | 
				
			||||||
    </div></div>";
 | 
					                            }
 | 
				
			||||||
 | 
					                        }
 | 
				
			||||||
                    }
 | 
					                    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                    ?>
 | 
					                    ?>
 | 
				
			||||||
 | 
					        </div>
 | 
				
			||||||
 | 
					    </div>
 | 
				
			||||||
 | 
					</div>
 | 
				
			||||||
  
 | 
					  
 | 
				
			||||||
            <style>
 | 
					
 | 
				
			||||||
                .form-control {
 | 
					</main>
 | 
				
			||||||
                    padding-top: 1px;
 | 
					 | 
				
			||||||
                    padding-bottom: 1px;
 | 
					 | 
				
			||||||
                }
 | 
					 | 
				
			||||||
            </style>
 | 
					 | 
				
			||||||
| 
						 | 
					@ -1,4 +1,9 @@
 | 
				
			||||||
<br><br><br><br><br><br><br><br><br>
 | 
					 | 
				
			||||||
<div style="background-color:white;width:100%di">
 | 
					 | 
				
			||||||
 
 | 
					 
 | 
				
			||||||
 | 
					 <footer class="footer bg-primary">
 | 
				
			||||||
 | 
					      <div class="container text-light"> 
 | 
				
			||||||
 | 
					        <p >LRR was originally developed as a <a href="http://lanlab.org/course/2018f/se/homepage.html" style="color:white;">Software engineering course project</a> by Mohamed Nor and Elmahdi Houzi.  Please submit your suggestions or bug reports to  lanhui _at_ zjnu.edu.cn.  Last updated on 18/04/2020 by Ashly. <a href="./homepage" style="color:white;">More information ...</a></p> 
 | 
				
			||||||
 | 
					      <small>© 2018 Copyright: <a href="http://lanlab.org/">lanlab.org</a></small>
 | 
				
			||||||
      </div>
 | 
					      </div>
 | 
				
			||||||
 | 
					    </footer>
 | 
				
			||||||
 | 
					  
 | 
				
			||||||
 | 
					 
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										211
									
								
								Header.php
								
								
								
								
							
							
						
						
									
										211
									
								
								Header.php
								
								
								
								
							| 
						 | 
					@ -19,137 +19,37 @@ if (mysqli_connect_errno()) {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<head>
 | 
					<head>
 | 
				
			||||||
 
 | 
					 
 | 
				
			||||||
  <link href="./css/bootstrap.min.css" rel="stylesheet" type="text/css" />
 | 
					  <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"/>
 | 
				
			||||||
  <link href="./font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
 | 
					  <link href="./font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css" /><!-- Font-awesome CSS -->
 | 
				
			||||||
  <link href="./css/bootstrap.min.css" rel="stylesheet" type="text/css" />
 | 
					  <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous"><!-- Bootstrap CSS -->
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  <link href="./css/Styles.css" rel="stylesheet" type="text/css" />
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  <script src="./css/jquery.min.js" type="text/javascript"></script>
 | 
					  <script src="./css/jquery.min.js" type="text/javascript"></script>
 | 
				
			||||||
  <script src="./css/bootsrap.min.js" type="text/javascript"></script>
 | 
					  <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
 | 
				
			||||||
 | 
					    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
 | 
				
			||||||
 | 
					    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
 | 
				
			||||||
 | 
					  
 | 
				
			||||||
  <script src="./css/jquery.datetimepicker.min.js" type="text/javascript"></script>
 | 
					  <script src="./css/jquery.datetimepicker.min.js" type="text/javascript"></script>
 | 
				
			||||||
 | 
					  <script src="./js/CustomDropdown.js" type="text/javascript"></script>
 | 
				
			||||||
</head>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
<body>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  <nav class="navbar navbar-expand-lg navbar-dark bg-dark" style="padding-left:150px;padding-right:150px;margin:auto;">
 | 
					 | 
				
			||||||
    <a class="navbar-brand" href="~\..\index.php"> <img src="logo.png" style="width:30px;height:30px;"> LRR </a>
 | 
					 | 
				
			||||||
    <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarColor02" aria-controls="navbarColor02" aria-expanded="false" aria-label="Toggle navigation">
 | 
					 | 
				
			||||||
      <span class="navbar-toggler-icon"></span>
 | 
					 | 
				
			||||||
    </button>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    <div class="collapse navbar-collapse" id="navbarColor02">
 | 
					 | 
				
			||||||
      <ul class="navbar-nav mr-auto">
 | 
					 | 
				
			||||||
        <li class="nav-item active">
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        <li class="nav-item active">
 | 
					 | 
				
			||||||
          <!-- <a class='nav-link' href='~\..\Visitors.php'>     <i class='fa fa-globe'></i>  Visitor Portal <span class='sr-only'>(current)</span></a> -->
 | 
					 | 
				
			||||||
        </li>
 | 
					 | 
				
			||||||
        <?php
 | 
					 | 
				
			||||||
        if (isset($_SESSION["user_fullname"])) {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
          echo "       <a class='nav-link' href='~\..\Courses.php'><i class='fa fa-book'></i> Courses <span class='sr-only'>(current)</span></a>";
 | 
					 | 
				
			||||||
        ?>
 | 
					 | 
				
			||||||
          </li>
 | 
					 | 
				
			||||||
      </ul>
 | 
					 | 
				
			||||||
      <form class="form-inline my-2 my-lg-0" style="color:#fff;">
 | 
					 | 
				
			||||||
        Welcome   <b> <?php echo $_SESSION['user_fullname']; ?> </b>  
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        <?php
 | 
					 | 
				
			||||||
          $c_date =  date("Y-m-d H:i");
 | 
					 | 
				
			||||||
          if (isset($_SESSION['user_student_id']))
 | 
					 | 
				
			||||||
            echo "(" . $_SESSION['user_type'] . " - " . $_SESSION['user_student_id'] . ")   ";
 | 
					 | 
				
			||||||
          else
 | 
					 | 
				
			||||||
            echo "(" . $_SESSION['user_type'] . ")   ";
 | 
					 | 
				
			||||||
        ?>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        <?php
 | 
					 | 
				
			||||||
          if ($_SESSION['user_type'] == "Lecturer") {
 | 
					 | 
				
			||||||
            echo  "     <i class=\"fa fa-cog\" style=\"color:#fff;\"> </i>  <a style='color:#fff !important' href=\"~\..\Admin.php\">Admin </a>";
 | 
					 | 
				
			||||||
          }
 | 
					 | 
				
			||||||
        ?>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
            <i class="fa fa-user" style="color:#fff;"> </i>
 | 
					 | 
				
			||||||
         <a href="#" style='color:#fff !important' onclick="updatePass(<?php echo $_SESSION['user_id']; ?>)">Update password</a>
 | 
					 | 
				
			||||||
            <i class="fa fa-lock" style="color:#fff;"> </i>  <a style='color:#fff !important' href="~\..\logout.php">Logout </a>
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      <?php
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
      ?>
 | 
					 | 
				
			||||||
      </form>
 | 
					 | 
				
			||||||
    </div>
 | 
					 | 
				
			||||||
  </nav>
 | 
					 | 
				
			||||||
 
 | 
					 
 | 
				
			||||||
    <style>
 | 
					    <style>
 | 
				
			||||||
    .nav-item {
 | 
					      .bd-placeholder-img {
 | 
				
			||||||
      border-color: #00ff66;
 | 
					        font-size: 1.125rem;
 | 
				
			||||||
 | 
					        text-anchor: middle;
 | 
				
			||||||
 | 
					        -webkit-user-select: none;
 | 
				
			||||||
 | 
					        -moz-user-select: none;
 | 
				
			||||||
 | 
					        user-select: none;
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    .nav-tabs {
 | 
					      /*Rule to include a block of CSS properties only if a certain condition is true.*/
 | 
				
			||||||
      border-color: #00ff66;
 | 
					      /*https://www.w3schools.com/css/css_rwd_mediaqueries.asp*/
 | 
				
			||||||
 | 
					      @media (min-width: 768px) {
 | 
				
			||||||
 | 
					        .bd-placeholder-img-lg {
 | 
				
			||||||
 | 
					          font-size: 3.5rem;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					 | 
				
			||||||
    .btn-default {
 | 
					 | 
				
			||||||
      border: 2px solid #00ff66;
 | 
					 | 
				
			||||||
      width: 100%;
 | 
					 | 
				
			||||||
      text-align: left;
 | 
					 | 
				
			||||||
      margin: 3px auto;
 | 
					 | 
				
			||||||
      font-weight: bold;
 | 
					 | 
				
			||||||
      font-size: 13pt;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    .table-bordered {
 | 
					 | 
				
			||||||
      padding: 5px !important;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    .alert {
 | 
					 | 
				
			||||||
      font-weight: bold;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    h1,
 | 
					 | 
				
			||||||
    h2,
 | 
					 | 
				
			||||||
    h3,
 | 
					 | 
				
			||||||
    h4 {
 | 
					 | 
				
			||||||
      color: #03407B;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    a {
 | 
					 | 
				
			||||||
      color: #03407B;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    .break-word {
 | 
					 | 
				
			||||||
      word-wrap: break-word;
 | 
					 | 
				
			||||||
      white-space: -moz-pre-wrap !important;
 | 
					 | 
				
			||||||
      /* Mozilla, since 1999 */
 | 
					 | 
				
			||||||
      white-space: -pre-wrap;
 | 
					 | 
				
			||||||
      /* Opera 4-6 */
 | 
					 | 
				
			||||||
      white-space: -o-pre-wrap;
 | 
					 | 
				
			||||||
      /* Opera 7 */
 | 
					 | 
				
			||||||
      white-space: pre-wrap;
 | 
					 | 
				
			||||||
      /* css-3 */
 | 
					 | 
				
			||||||
      word-wrap: break-word;
 | 
					 | 
				
			||||||
      /* Internet Explorer 5.5+ */
 | 
					 | 
				
			||||||
      white-space: -webkit-pre-wrap;
 | 
					 | 
				
			||||||
      /* Newer versions of Chrome/Safari*/
 | 
					 | 
				
			||||||
      word-break: break-all;
 | 
					 | 
				
			||||||
      white-space: normal;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    .ui-widget-content.ui-dialog {
 | 
					 | 
				
			||||||
      border: 2px solid #03488B;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    .ui-dialog>.ui-widget-header {
 | 
					 | 
				
			||||||
      background: #03488B;
 | 
					 | 
				
			||||||
      color: white
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    .ui-button {
 | 
					 | 
				
			||||||
      background: #03488B;
 | 
					 | 
				
			||||||
      color: white
 | 
					 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
    </style>
 | 
					    </style>
 | 
				
			||||||
 | 
					 | 
				
			||||||
  <script>
 | 
					  <script>
 | 
				
			||||||
    function updatePass(id) {
 | 
					    function updatePass(id) {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -169,3 +69,72 @@ if (mysqli_connect_errno()) {
 | 
				
			||||||
      window.location.href = "\Script.php\?action=statuschange&uid=" + id + "&status=" + status;
 | 
					      window.location.href = "\Script.php\?action=statuschange&uid=" + id + "&status=" + status;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
  </script>
 | 
					  </script>
 | 
				
			||||||
 | 
					</head>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<body>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 
 | 
				
			||||||
 | 
					<nav class="navbar navbar-expand-md navbar-dark bg-primary sticky-top">
 | 
				
			||||||
 | 
					  <div class="container-fluid"> 
 | 
				
			||||||
 | 
					    <a class="navbar-brand" href="~\..\index.php"> <img src="logo.png" width="30" height="30"> LRR </a>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        <?php  
 | 
				
			||||||
 | 
					          if (isset($_SESSION["user_fullname"])) 
 | 
				
			||||||
 | 
					          { 
 | 
				
			||||||
 | 
					        ?>
 | 
				
			||||||
 | 
					            <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive">
 | 
				
			||||||
 | 
					            <span class="navbar-toggler-icon"></span>
 | 
				
			||||||
 | 
					            </button>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        <?php
 | 
				
			||||||
 | 
					          }
 | 
				
			||||||
 | 
					        ?>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    <div class="collapse navbar-collapse" id="navbarResponsive">
 | 
				
			||||||
 | 
					      
 | 
				
			||||||
 | 
					        <?php
 | 
				
			||||||
 | 
					        if (isset($_SESSION["user_fullname"])) {
 | 
				
			||||||
 | 
					          echo "<ul class=\"navbar-nav mr-auto\">";
 | 
				
			||||||
 | 
					          echo "<li class=\"nav-item active\">";
 | 
				
			||||||
 | 
					          echo "<a class='nav-link' href='~\..\Courses.php'><i class='fa fa-book'></i> Courses</a>";
 | 
				
			||||||
 | 
					          echo "</li></ul>"; 
 | 
				
			||||||
 | 
					        ?>
 | 
				
			||||||
 | 
					        
 | 
				
			||||||
 | 
					    <ul class="nav navbar-nav navbar-right">
 | 
				
			||||||
 | 
					        <li class="nav-item">
 | 
				
			||||||
 | 
					          <a class="nav-link text-light" href="#">Welcome <b> <?php echo $_SESSION['user_fullname']; ?> </b>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					          <?php
 | 
				
			||||||
 | 
					            $c_date =  date("Y-m-d H:i");
 | 
				
			||||||
 | 
					            if (isset($_SESSION['user_student_id']))
 | 
				
			||||||
 | 
					              echo "(" . $_SESSION['user_type'] . " - " . $_SESSION['user_student_id'] . ")   ";
 | 
				
			||||||
 | 
					            else
 | 
				
			||||||
 | 
					              echo "(" . $_SESSION['user_type'] . ")   ";
 | 
				
			||||||
 | 
					          ?>
 | 
				
			||||||
 | 
					          </a>
 | 
				
			||||||
 | 
					        </li>
 | 
				
			||||||
 | 
					        <li class="nav-item dropdown">
 | 
				
			||||||
 | 
					          <a class="nav-link dropdown-toggle text-light"  id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> Menu </a>
 | 
				
			||||||
 | 
					          <div class="dropdown-menu" aria-labelledby="navbarDropdown">
 | 
				
			||||||
 | 
					            <a href="#" class="dropdown-item" onclick="updatePass(<?php echo $_SESSION['user_id']; ?>)"><i class="fa fa-user ">Update passwor</i></a>
 | 
				
			||||||
 | 
					           
 | 
				
			||||||
 | 
					            <?php
 | 
				
			||||||
 | 
					                if ($_SESSION['user_type'] == "Lecturer") {
 | 
				
			||||||
 | 
					                  echo  "<a class=\"dropdown-item\" href=\"~\..\Admin.php\"><i class=\"fa fa-cog\" >Admin</i> </a>";
 | 
				
			||||||
 | 
					                }
 | 
				
			||||||
 | 
					              ?>  
 | 
				
			||||||
 | 
					          </div>
 | 
				
			||||||
 | 
					        </li>
 | 
				
			||||||
 | 
					        <li class="nav-item">
 | 
				
			||||||
 | 
					            <a class="nav-link text-light" href="~\..\logout.php"><i class="fa fa-lock" > Logout</i> </a>
 | 
				
			||||||
 | 
					        </li>
 | 
				
			||||||
 | 
					      </ul>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					      <?php
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					      ?>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    </div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  </div>
 | 
				
			||||||
 | 
					</nav> 
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,15 @@
 | 
				
			||||||
 | 
					/* Sticky footer styles
 | 
				
			||||||
 | 
					-------------------------------------------------- */
 | 
				
			||||||
 | 
					html {
 | 
				
			||||||
 | 
					  position: relative;
 | 
				
			||||||
 | 
					  min-height: 100%;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					body {
 | 
				
			||||||
 | 
					  margin-bottom: 100px; /* Margin bottom by footer height */
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.footer {
 | 
				
			||||||
 | 
					  position: absolute;
 | 
				
			||||||
 | 
					  bottom: 0;
 | 
				
			||||||
 | 
					  width: 100%;
 | 
				
			||||||
 | 
					  height: 100px; /* Set the fixed height of the footer here */ 
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										93
									
								
								index.php
								
								
								
								
							
							
						
						
									
										93
									
								
								index.php
								
								
								
								
							| 
						 | 
					@ -10,42 +10,40 @@ if (isset($_SESSION["user_fullname"])) {
 | 
				
			||||||
    header("Location: Courses.php");
 | 
					    header("Location: Courses.php");
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
?>
 | 
					?>
 | 
				
			||||||
 | 
					<div class="album py-5 bg-white">
 | 
				
			||||||
 | 
					        <div class="container bg-white">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<br><br><br>
 | 
					          <div class="row align-items-center"> 
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<div class="row" style="width:85%;margin:auto;">
 | 
					            <div class="col-md-6">
 | 
				
			||||||
  <div class="col-md-4">
 | 
					              <div class="mb-6 box-shadow">
 | 
				
			||||||
    <br><br>
 | 
					                 <img class="mx-auto d-block" src="logo.png" />  
 | 
				
			||||||
    <img src="logo.png" style="width:40%; position:relative; right:-95px; top:1px;">
 | 
					                <div class="card-body">
 | 
				
			||||||
    <br><br>
 | 
					                  <h1 style="font-family: Poppins-Regular;">Lab Report Repository</h1>
 | 
				
			||||||
    <div style="width:20%; position:relative; right:-90px; font-family: Poppins-Regular;">
 | 
					 | 
				
			||||||
    <h1>Lab Report Repository</h1>
 | 
					 | 
				
			||||||
    <br><br>
 | 
					 | 
				
			||||||
                </div>
 | 
					                </div>
 | 
				
			||||||
              </div>
 | 
					              </div>
 | 
				
			||||||
    <br>
 | 
					            </div> 
 | 
				
			||||||
    <div style = "position:relative; left:240px; top:-2px;">
 | 
					
 | 
				
			||||||
 | 
					            <div class="col-md-6">
 | 
				
			||||||
 | 
					              <div class="card mb-6 box-shadow">
 | 
				
			||||||
 | 
					                    <div class="card-header bg-primary" >  
 | 
				
			||||||
                        <h4 class="list-group-item active" style="font-weight:normal;font-family: Poppins-Regular;"> Sign in </h4>
 | 
					                        <h4 class="list-group-item active" style="font-weight:normal;font-family: Poppins-Regular;"> Sign in </h4>
 | 
				
			||||||
    <div class="list-group-item">
 | 
					                    </div> 
 | 
				
			||||||
 | 
					                 <div class="card-body">
 | 
				
			||||||
    <div class="panel-body">
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
                   <form  method="post" action="Script.php" name="frm_login">
 | 
					                   <form  method="post" action="Script.php" name="frm_login">
 | 
				
			||||||
                    <input type="hidden" name="frm_login" value="true"/>
 | 
					                    <input type="hidden" name="frm_login" value="true"/>
 | 
				
			||||||
    Student ID / Instructor Email
 | 
					                    <p>Student ID / Instructor Email</p>
 | 
				
			||||||
                    <input type="text" name="user" placeholder="Email / Student Number" class="form-control" required="required" />
 | 
					                    <input type="text" name="user" placeholder="Email / Student Number" class="form-control" required="required" />
 | 
				
			||||||
                    <br>
 | 
					                    <br>
 | 
				
			||||||
    Password
 | 
					                    <p>Password</p>
 | 
				
			||||||
    <input type="password" class="form-control"  name="password" placeholder="password" required="required" />
 | 
					                    <input type="password" class="form-control"  name="password" placeholder="Password" required="required" />
 | 
				
			||||||
                    <div class="text-center">
 | 
					                    <div class="text-center">
 | 
				
			||||||
    <br><input type="submit" class="btn-primary" value="Login">
 | 
					                        <br><input type="submit" class="btn btn-primary my-2 btn-lg btn-block" value="Login">
 | 
				
			||||||
                    </div>
 | 
					                    </div>
 | 
				
			||||||
    <br> <a href="recover_password.php" style="font-weight:normal;color:#2471A3; font-family: Poppins-Regular;
 | 
					                    <br> <a href="recover_password.php">Reset my password</a>
 | 
				
			||||||
    font-size: 17px;">Reset my password</a>
 | 
					 | 
				
			||||||
                    <div class="text-center">
 | 
					                    <div class="text-center">
 | 
				
			||||||
    <br><span class="txt1">Don't have an account?</span>
 | 
					                        <br><span >Don't have an account?</span>
 | 
				
			||||||
         <a class="txt2" href="signup.php" style="font-weight:normal">Sign Up</a>
 | 
					                        <a href="signup.php" >Sign Up</a> 
 | 
				
			||||||
        </a>
 | 
					 | 
				
			||||||
                    </div> 
 | 
					                    </div> 
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            <?php 
 | 
					            <?php 
 | 
				
			||||||
| 
						 | 
					@ -71,58 +69,19 @@ if (isset($_SESSION["user_fullname"])) {
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
            ?>
 | 
					            ?>
 | 
				
			||||||
 
 | 
					 
 | 
				
			||||||
    </div>
 | 
					 | 
				
			||||||
                </form>
 | 
					                </form>
 | 
				
			||||||
                </div>
 | 
					                </div>
 | 
				
			||||||
              </div>
 | 
					              </div>
 | 
				
			||||||
            </div> 
 | 
					            </div> 
 | 
				
			||||||
          </div>
 | 
					          </div>
 | 
				
			||||||
 | 
					        </div>
 | 
				
			||||||
      </div>
 | 
					      </div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					<?php 
 | 
				
			||||||
<div id="footer">
 | 
					require 'Footer.php'; 
 | 
				
			||||||
    LRR was originally developed as a <a href="http://lanlab.org/course/2018f/se/homepage.html" style="color:white;">software engineering course project</a> by Mohamed Nor and Elmahdi Houzi.  Please submit your suggestions or bug reports to  lanhui _at_ zjnu.edu.cn.  Last updated on 18/04/2020 by Ashly. <a href="./homepage" style="color:white;">More information ...</a>
 | 
					?>
 | 
				
			||||||
    </div>
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
</body>
 | 
					</body>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<style>
 | 
					 | 
				
			||||||
    /*------------------------------------------------------------------
 | 
					 | 
				
			||||||
[ Login Button ]*/
 | 
					 | 
				
			||||||
.btn-primary {
 | 
					 | 
				
			||||||
            color: white;
 | 
					 | 
				
			||||||
            border-radius: 5px;
 | 
					 | 
				
			||||||
            text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
 | 
					 | 
				
			||||||
            background: rgb(75, 184, 240);
 | 
					 | 
				
			||||||
            padding:5px 100px;
 | 
					 | 
				
			||||||
            font-family: Poppins-Regular;
 | 
					 | 
				
			||||||
            font-size: 23px;
 | 
					 | 
				
			||||||
            line-height: 1.5;
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#footer{
 | 
					 | 
				
			||||||
position:fixed;
 | 
					 | 
				
			||||||
bottom:0;
 | 
					 | 
				
			||||||
left:0;
 | 
					 | 
				
			||||||
background-color:#03417C;
 | 
					 | 
				
			||||||
color:#FFF;
 | 
					 | 
				
			||||||
text-align:center;
 | 
					 | 
				
			||||||
width:100%;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.txt1 {
 | 
					 | 
				
			||||||
  font-family: Poppins-Regular;
 | 
					 | 
				
			||||||
  font-size: 18px;
 | 
					 | 
				
			||||||
  line-height: 1.5;
 | 
					 | 
				
			||||||
  color: #666666;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
.txt2 {
 | 
					 | 
				
			||||||
  font-family: Poppins-Regular;
 | 
					 | 
				
			||||||
  font-size: 19px;
 | 
					 | 
				
			||||||
  line-height: 1.5;
 | 
					 | 
				
			||||||
  color: #2471A3;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
</style>
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
</html>
 | 
					</html>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,9 @@
 | 
				
			||||||
 | 
					$(document).ready(function(e){
 | 
				
			||||||
 | 
					    $('.search-panel .dropdown-menu').find('a').click(function(e) {
 | 
				
			||||||
 | 
							e.preventDefault();
 | 
				
			||||||
 | 
							var param = $(this).attr("href").replace("#","");
 | 
				
			||||||
 | 
							var concept = $(this).text();
 | 
				
			||||||
 | 
							$('.search-panel span#search_concept').text(concept);
 | 
				
			||||||
 | 
							$('.input-group #search_param').val(param);
 | 
				
			||||||
 | 
						});
 | 
				
			||||||
 | 
					});
 | 
				
			||||||
							
								
								
									
										40
									
								
								signup.php
								
								
								
								
							
							
						
						
									
										40
									
								
								signup.php
								
								
								
								
							| 
						 | 
					@ -6,35 +6,37 @@ include 'NoDirectPhpAcess.php';
 | 
				
			||||||
include 'Header.php';
 | 
					include 'Header.php';
 | 
				
			||||||
?>
 | 
					?>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<div class="row">
 | 
					<div class="album py-5 bg-white">
 | 
				
			||||||
 | 
					    <div class="container bg-white">
 | 
				
			||||||
 
 | 
					 
 | 
				
			||||||
    <div class="col-md-4 list-group" style="margin:auto;">
 | 
					    <div class="col-md-6 panel panel-primary" >
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <br>
 | 
					        <br>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <h4 class="list-group-item active"> Please fill in each field below </h4>
 | 
					        <h4 class="list-group-item active"> Please fill in each field below </h4>
 | 
				
			||||||
        <div class="list-group-item">
 | 
					        <div class="list-group-item">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            <div class="panel-body">
 | 
					            <div class="panel panel-primary">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                <form method="post" action="Script.php">
 | 
					                <form method="post" action="Script.php">
 | 
				
			||||||
                    <input type="hidden" name="frm_signup_2" value="true" />
 | 
					                    <input type="hidden" name="frm_signup_2" value="true" />
 | 
				
			||||||
                    Full Name
 | 
					                    <p>Full Name</p>
 | 
				
			||||||
                    <input type="text" name="fullname" placeholder="Your full name" class="form-control" value="<?php echo $_SESSION['user_fullname']; ?>" required="required" />
 | 
					                    <input type="text" name="fullname" placeholder="Your full name" class="form-control" value="<?php echo $_SESSION['user_fullname']; ?>" required="required" />
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                    Student ID
 | 
					                    <p>Student ID</p>
 | 
				
			||||||
                    <input type="text" name="user_student_id" placeholder="Entre your student ID" class="form-control" value="<?php echo $_SESSION['user_student_id']; ?>" required="required">
 | 
					                    <input type="text" name="user_student_id" placeholder="Entre your student ID" class="form-control" value="<?php echo $_SESSION['user_student_id']; ?>" required="required">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                    Email
 | 
					                    <p>Email</p>
 | 
				
			||||||
                    <input type="text" name="email" placeholder="Email" class="form-control" value="<?php echo $_SESSION['user_email']; ?>" required="required" />
 | 
					                    <input type="text" name="email" placeholder="Email" class="form-control" value="<?php echo $_SESSION['user_email']; ?>" required="required" />
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                    Password (<i>must include uppercase and lowercase letters, digits and special characters</i>)
 | 
					                    <p>Password (<i>must include uppercase and lowercase letters, digits and special characters</i>)</p>
 | 
				
			||||||
                    <input type="password" class="form-control" name="password" placeholder="Enter password" required="required" />
 | 
					                    <input id="password" type="password" pattern="^(?=.*[A-Za-z])(?=.*\d)(?=.*[@$!%*#?&])[A-Za-z\d@$!%*#?&]{4,}$" title="Password must have at least characters that include lowercase letters, uppercase letters, numbers and sepcial characters (e.g., !?.,*^)." class="form-control" name="password" placeholder="Enter password" required="required"  onchange="if(this.checkValidity()) form.password_two.pattern = this.value;" />
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                    Confirm Password
 | 
					                    <p>Confirm Password</p>
 | 
				
			||||||
                    <input type="password" class="form-control" name="confirmpassword" placeholder="Confirm password" required="required" />
 | 
					                    <input id="password_two" type="password" pattern="^(?=.*[A-Za-z])(?=.*\d)(?=.*[@$!%*#?&])[A-Za-z\d@$!%*#?&]{4,}$" title="Password must have at least characters that include lowercase letters, uppercase letters, numbers and sepcial characters" class="form-control" name="confirmpassword" placeholder="Confirm password" required="required" onchange="this.setCustomValidity(this.validity.patternMismatch ? 'Please enter the same Password as above' : '');" />
 | 
				
			||||||
                    <br>
 | 
					                    <br>
 | 
				
			||||||
                    <input type="submit" class="btn-primary" value="Sign up">
 | 
					
 | 
				
			||||||
 | 
					                    <input type="submit" class="btn btn-primary" value="Sign up">
 | 
				
			||||||
                    <?php
 | 
					                    <?php
 | 
				
			||||||
                    error_reporting(E_ALL);
 | 
					                    error_reporting(E_ALL);
 | 
				
			||||||
                    if (isset($_SESSION['info_signup2'])) {
 | 
					                    if (isset($_SESSION['info_signup2'])) {
 | 
				
			||||||
| 
						 | 
					@ -48,17 +50,5 @@ include 'Header.php';
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
</div>
 | 
					</div>
 | 
				
			||||||
<style>
 | 
					</div>
 | 
				
			||||||
    /*------------------------------------------------------------------
 | 
					
 | 
				
			||||||
[ Login Button ]*/
 | 
					 | 
				
			||||||
    .btn-primary {
 | 
					 | 
				
			||||||
        color: white;
 | 
					 | 
				
			||||||
        border-radius: 5px;
 | 
					 | 
				
			||||||
        text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
 | 
					 | 
				
			||||||
        background: rgb(75, 184, 240);
 | 
					 | 
				
			||||||
        padding: 5px 105px;
 | 
					 | 
				
			||||||
        font-family: Poppins-Regular;
 | 
					 | 
				
			||||||
        font-size: 23px;
 | 
					 | 
				
			||||||
        line-height: 1.5;
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
</style>
 | 
					 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue