Your IP : 3.129.22.34
<?php
session_start(); ob_start();
error_reporting(0);
@ini_set('display_error', 0);
if(!isset($_SESSION['retreat'])){
header("location: login.php");
exit;
}
//$repid = $_SESSION['repid'];
include("data.inc.php");
$ymd = date('ymd');
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Registration Panel</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 -->
<!-- Select2 -->
<link rel="stylesheet" href="../plugins/select2/select2.min.css">
<style type="text/css">
.holds-the-iframe {
background:url(wait.gif) center center no-repeat;
}
</style>
</head>
<body class="hold-transition skin-blue sidebar-mini">
<div class="wrapper">
<?php require('header.php'); ?>
<!-- Left side column. contains the logo and sidebar -->
<?php require('sidebarx.php'); ?>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<!-- Main content -->
<section class="content">
<div class="row">
<div class="col-md-4 col-sm-6 col-xs-12" id="profile">
<div class="box">
<div class="box-header">
<h4 class="box-title"><strong>Registration Panel: <?php echo $region; ?> Region</strong> </h4>
</div>
<div class="panel-body">
<section class="select2">
<option>1</option><option>4</option>
</section>
<i>Search surname, othernames or phone number</i>
<div class="holds-the-iframe"><iframe src="search/index2.php" width="100%" height="500" frameborder="0"></iframe></div>
</div><!-- /.tab-content -->
</div><!-- /.box -->
</div>
</div><!-- /.row -->
<!-- =========================================================== -->
</div><!-- /.row -->
</section> <!-- /.content -->
</div><!-- /.content-wrapper -->
<?php require('footer.php'); ?>
<!-- Control Sidebar -->
<?php // require('settingbar.php'); ?>
<!-- Add the sidebar's background. This div must be placed
immediately after the control sidebar -->
<div class="control-sidebar-bg"></div>
</div><!-- ./wrapper -->
<!-- jQuery 2.1.4 -->
<script src="../plugins/jQuery/jQuery-2.1.4.min.js"></script>
<!-- Bootstrap 3.3.5 -->
<!-- Select2 -->
<script src="../plugins/select2/select2.full.min.js"></script>
<!-- InputMask -->
<script>
$(function () {
//Initialize Select2 Elements
$(".select2").select2();
});
</script>
</body>
</html>