
PK 
<?php
ob_start();
//error_reporting(E_ALL ^ E_NOTICE);
@session_start();
ini_set('allow_url_include',1);
date_default_timezone_set("Asia/Kolkata");
set_time_limit(600);
ini_set('max_execution_time',600);
include '../includes/settings/constant.php';
require_once '../includes/settings/PDODB.php';
include '../includes/modules/functions.php';
$function = new FUNCTIONS();
//print_r($_SESSION);
if(empty($_SESSION['adminId'])){
header("Location: ../index.php");
exit();
}
/*$password = "12345";
$hashed_password = password_hash($password, PASSWORD_DEFAULT);
print_r($hashed_password);*/
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Admin Panel | Dashboard</title>
<?php include_once '../layout/style.php'; ?>
</head>
<body>
<div id="wrapper">
<?php $currentPage = 'dashboard'; include_once '../layout/side-bar.php'; ?>
<div id="page-wrapper" class="gray-bg dashbard-1">
<?php include_once '../layout/header.php'; ?>
<div class="row border-bottom white-bg dashboard-header">
<div class="col-sm-8">
<h2>Welcome to Dashboard</h2>
</div>
<div class="col-sm-4">
<button class="btn btn-primary btn-md pull-right" onclick="history.go(-1);"><i class="fa fa-arrow-circle-left"></i> BACK </button>
</div>
</div>
<div class="row" style="background-color: #fff;">
<div class="ibox-content">
<div class="col-lg-4">
<a href="../member/index.php">
<div class="panel panel-primary">
<div class="panel-heading">
Users
</div>
<div class="panel-body text-navy">
<h1 class="no-margins">0</h1>
<!-- <div class="stat-percent font-bold text-success">98% <i class="fa fa-bolt"></i></div> -->
<p>Total number of members</p>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<?php include_once '../layout/script.php'; ?>
<script type="text/javascript">
document.getElementById("payButton").onclick = function () {
location.href = "../payment/index.php";
};
document.getElementById("addmemberButton").onclick = function () {
location.href = "../newmember/index.php";
};
</script>
<script>
$(document).ready(function() {
setTimeout(function() {
toastr.options = {
closeButton: true,
progressBar: true,
showMethod: 'slideDown',
timeOut: 4000
};
toastr.success('Welcome to Truffle Nation Admin');
}, 1300);
});
</script>
</body>
</html>


PK 99