File: /home/barbeatleanalyti/public_html/baris.beatleanalytics.com/site/template/error.php
<?php
$pg = loadVariable("pg",'signup');
$acn = loadVariable("acn",'');
$error = loadVariable("error",'');
$msg = loadVariable("msg",'');
?>
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
404 Error Page
</h1>
</section>
<!-- Main content -->
<section class="content">
<div class="error-page">
<h2 class="headline text-yellow"> 404</h2>
<div class="error-content">
<h3><i class="fa fa-warning text-yellow"></i> Oops! there is something wrong..</h3>
<h4 style="line-height:26px;">
We could not find the page you were looking for.
Meanwhile, you may <a style="color:red;" href="<?php echo backPG();?>.html">return to dashboard</a> or try using the search form.
</h4>
<?php
$styl = '';
if($_SERVER['HTTP_HOST'] != 'localhost' || $_SERVER['HTTP_HOST'] != '127.0.0.1' ){
$styl = 'style="display:none;"';
}
?>
<div class="row"> </div>
<span>
<h4>
<?php
if(strtolower($_SESSION['UserInfo']['UType']) == 'end_user') {
?>
<a class="btn btn-success" href="profilenew.html"> [ Home ]</a>
<?php }else{ ?>
<a class="btn btn-success" href="dashboardma.html"> [ Home ]</a>
<?php
} ?>
<a class="btn btn-info" href="mailto:<?php echo ADMIN_EMAIL?>"> [ Write to us ] </a>
</h4>
<span class='error-msg' <?php echo $styl;?>> <?php echo $msg; ?> </span>
</span>
</div>
<!-- /.error-content -->
</div>
<!-- /.error-page -->
</section>
<!-- /.content -->
</div>