ESH/error.php
2024-10-23 18:28:06 +05:30

76 lines
1.6 KiB
PHP

<?php
include ('techsyn_header.php');
?>
<link rel="stylesheet" href="css/wizard.css">
<!-- Main Content Container for side bar and body-->
<div class="main-container ace-save-state" id="main-container">
<script type="text/javascript">
try{ace.settings.loadState('main-container')}catch(e){}
</script>
<?php include('techsyn_sidebar.php'); ?>
<div class="main-content">
<div class="main-content-inner">
<div class="breadcrumbs ace-save-state" id="breadcrumbs">
<ul class="breadcrumb">
<li><i class="ace-icon fa fa-warning icon"></i> Access Denied</li>
</ul>
</div>
<!-- End of breadcrumb -->
<div class="page-content">
<div class="row">
<div class="col-sm-9 col-sm-offset-3">
<div class="error-page">
<div class="error-content">
<h3 class="text-yellow">
<i class="fa fa-warning text-red"></i> Oops! Something went
wrong.
</h3>
<p class="text-red">
Access denied. You do not have adequate previledges to perform this action.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- /.page-content -->
</div>
</div>
<!-- /.main-content -->
</div>
<style>
.error-page>.headline {
float: left;
font-size: 100px;
font-weight: 300;
}
.text-red {
color: #dd4b39 !important;
}
.text-yellow {
color: #f39c12 !important
}
.callout {
width:100%;
border-radius: 10px;
margin: 0 0 20px 0;
padding: 15px 30px 15px 15px;
border-left: 5px solid #eee;
}
</style>
<?php include('techsyn_footer.php'); ?>