Your IP : 18.117.94.180


Current Path : /home/lentoinv/churchmr.com/
Upload File :
Current File : /home/lentoinv/churchmr.com/cluster.php

<?php 
    session_start(); ob_start();
	error_reporting(0); 
	@ini_set('display_error', 0);

 include('cludes/connect2.inc.php'); 

			
	 
   if(array_key_exists('login', $_POST)){
     
	    $username = strtolower($_POST['username']);
      $user = explode('-', $username);
	   $user1=$user[0]; 
	    $user2=$user[1]; 
     
	   $result = $db->query("SELECT * FROM cluster WHERE did = '$user1' AND sn = '$user2' ") or die(mysqli_error()); 

	  if(mysqli_num_rows($result)==1){
	   
	$row = mysqli_fetch_array($result); 
  $_SESSION['cluster']=$row['sn'];
				header("location:user/centreconverts.php");   exit;
		    } else{
          $msg='You have entered an invalid passcode. please, try again';
        }
 
 }


   
   
?>
<html>
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title>CHURCH MR | Login</title>
    <!-- Tell the browser to be responsive to screen width -->
    <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
    <!-- Bootstrap 3.3.5 -->
    <link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
    <!-- Font Awesome -->
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
    <!-- Ionicons -->
    <link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
    <!-- Theme style -->
    <link rel="stylesheet" href="dist/css/AdminLTE.min.css">
    <!-- iCheck -->
    <link rel="stylesheet" href="plugins/iCheck/square/blue.css">

    <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
    <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
    <!--[if lt IE 9]>
        <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
        <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
    <![endif]-->
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">

  </head>
<body class="">
    <div class="login-box">
      <center> <img src="user/upload/user.jpg"> <h3>
        <a href="adminn.php"><b>CHURCH MOBILE REPORT</b></a> </h3></center>
      <div class="login-box-body">
        <p class="login-box-msg">Sign in to manage your reports <br><font color="red"><?php echo $msg; ?></font></p>
        <form  method="post" enctype="multipart/form-data">
          <div class="form-group has-feedback">
            <input type="text" class="form-control" placeholder="Passcode" name="username" style="font-size: 24px; text-align: center;">
            <span class="glyphicon glyphicon-lock form-control-feedback"></span>
          </div>
          
          <div class="row">
           
            <div class="col-xs-12">
              <button type="submit" class="btn btn-primary btn-block btn-flat" name="login">Sign In</button>
            </div><!-- /.col -->
          </div>
        </form>


      <!---  <a href="#">Admin</a><br>  ---->
        

      </div><!-- /.login-box-body -->
    </div><!-- /.login-box -->

    <!-- jQuery 2.1.4 -->
    <script src="plugins/jQuery/jQuery-2.1.4.min.js"></script>
    <!-- Bootstrap 3.3.5 -->
    <script src="bootstrap/js/bootstrap.min.js"></script>
    <!-- iCheck -->
    <script src="plugins/iCheck/icheck.min.js"></script>
    <script>
      $(function () {
        $('input').iCheck({
          checkboxClass: 'icheckbox_square-blue',
          radioClass: 'iradio_square-blue',
          increaseArea: '20%' // optional
        });
      });
    </script>
  </body>
</html>

?>