185 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			PHP
		
	
	
		
		
			
		
	
	
			185 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			PHP
		
	
	
|  | <?php | ||
|  | session_start(); | ||
|  | 
 | ||
|  | error_reporting(0); | ||
|  |   date_default_timezone_set('Asia/Shanghai'); | ||
|  | 
 | ||
|  | 
 | ||
|  | $con=mysqli_connect("localhost","root","","lrr"); | ||
|  | // Check connection
 | ||
|  | if (mysqli_connect_errno()) | ||
|  |   { | ||
|  |   echo "Failed to connect to MySQL: " . mysqli_connect_error(); | ||
|  |   } | ||
|  | else | ||
|  | { | ||
|  | 
 | ||
|  | } | ||
|  | 
 | ||
|  | 
 | ||
|  | 
 | ||
|  | ?>
 | ||
|  | 
 | ||
|  | 
 | ||
|  | <!DOCTYPE html> | ||
|  | 
 | ||
|  | <html> | ||
|  | <header> | ||
|  |   | ||
|  |     | ||
|  | <link href="css/bootstrap.min.css" rel="stylesheet" type="text/css"/> | ||
|  | 
 | ||
|  | <!--<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"/> --> | ||
|  | <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.8.2/css/fontawesome.min.css" /> | ||
|  | <script src="http://118.25.96.118/nor/css/jquery.min.js" type="text/javascript"></script> | ||
|  | <script src="http://118.25.96.118/nor/css/bootsrap.min.js" type="text/javascript"></script> | ||
|  | <link href="http://118.25.96.118/nor/css/bootstrap.min.css" rel="stylesheet" type="text/css"/> | ||
|  | <script src="http://118.25.96.118/nor/css/jquery.datetimepicker.min.js" type="text/javascript"></script> | ||
|  | 
 | ||
|  | 
 | ||
|  | 
 | ||
|  | </header> | ||
|  | 
 | ||
|  | 
 | ||
|  | <body> | ||
|  | 
 | ||
|  | 
 | ||
|  |  <?php | ||
|  |  $curDateTime = date("Y-m-d H:i"); | ||
|  |  include 'connect.php'; | ||
|  |   | ||
|  |  ?>   
 | ||
|  |      | ||
|  | <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;heigh:30px;"> LRRS</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"); | ||
|  |         echo "(". $_SESSION['user_type'] .")   "; | ||
|  |          | ||
|  |         ?>
 | ||
|  |          | ||
|  |          | ||
|  |          | ||
|  |            <i class="fa fa-lock" style="color:#fff;"> </i>  <a style='color:#fff !important' href="~\..\logout.php">Logout </a> | ||
|  |     | ||
|  |         |   <a href="#" style='color:#fff !important' onclick="updatePass(<?php echo $_SESSION['user_id'];?>)">Update Password</a> | ||
|  |     | ||
|  |     <?php | ||
|  |             } | ||
|  |             ?>
 | ||
|  |     </form> | ||
|  |   </div> | ||
|  | </nav> | ||
|  |      | ||
|  |      | ||
|  |      | ||
|  |     <style> | ||
|  |         .nav-item{ | ||
|  |           border-color:#00ff66;  
 | ||
|  |         } | ||
|  |         .nav-tabs{ | ||
|  |            border-color:#00ff66;    
 | ||
|  |         } | ||
|  |          | ||
|  |        | ||
|  |         .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> | ||
|  |      | ||
|  |      | ||
|  |      | ||
|  |     <script> | ||
|  |     function updatePass(id) | ||
|  |     { | ||
|  |   | ||
|  |        var pass=  prompt("Enter your New Password : ", "..."); | ||
|  |          | ||
|  |       if(!confirm('Are you  sure to Reset your  Password?')) | ||
|  |       { | ||
|  |         return;   | ||
|  |       } | ||
|  | 
 | ||
|  |             window.location.href="\Script.php\?action=passchange&uid="+id+"&pass="+pass; | ||
|  |     } | ||
|  |      | ||
|  |       function blockUser(id,status) | ||
|  |     { | ||
|  |           if(!confirm('Are you to change User Status')) | ||
|  |       { | ||
|  |         return;   | ||
|  |       } | ||
|  |     window.location.href="\Script.php\?action=statuschange&uid="+id+"&status="+status; | ||
|  |     } | ||
|  |     </script> |