2013-06-26 12:31:57 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2013-12-19 12:28:10 +02:00
|
|
|
<title><?php echo $company_name; ?></title>
|
2013-06-26 12:31:57 +03:00
|
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
|
|
|
|
|
|
<?php // INCLUDE JS FILES ?>
|
|
|
|
<script
|
|
|
|
type="text/javascript"
|
2015-01-29 00:53:13 +02:00
|
|
|
src="<?php echo $this->config->base_url(); ?>/assets/js/libs/jquery/jquery.min.js"></script>
|
2013-06-26 12:31:57 +03:00
|
|
|
<script
|
|
|
|
type="text/javascript"
|
2015-01-29 00:53:13 +02:00
|
|
|
src="<?php echo $this->config->base_url(); ?>/assets/js/libs/bootstrap/bootstrap.min.js"></script>
|
2013-06-26 12:31:57 +03:00
|
|
|
<script
|
|
|
|
type="text/javascript"
|
2015-01-29 00:53:13 +02:00
|
|
|
src="<?php echo $this->config->base_url(); ?>/assets/js/libs/date.js"></script>
|
2013-06-26 12:31:57 +03:00
|
|
|
<script
|
|
|
|
type="text/javascript"
|
2015-01-29 00:53:13 +02:00
|
|
|
src="<?php echo $this->config->base_url(); ?>/assets/js/general_functions.js"></script>
|
2013-06-26 12:31:57 +03:00
|
|
|
|
|
|
|
<?php // INCLUDE CSS FILES ?>
|
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
type="text/css"
|
2015-01-29 00:53:13 +02:00
|
|
|
href="<?php echo $this->config->base_url(); ?>/assets/css/libs/bootstrap/bootstrap.css">
|
2013-06-26 12:31:57 +03:00
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
type="text/css"
|
2015-01-29 00:53:13 +02:00
|
|
|
href="<?php echo $this->config->base_url(); ?>/assets/css/libs/bootstrap/bootstrap-responsive.css">
|
2013-06-26 12:31:57 +03:00
|
|
|
|
|
|
|
<?php // SET FAVICON FOR PAGE ?>
|
|
|
|
<link
|
|
|
|
rel="icon"
|
|
|
|
type="image/x-icon"
|
2015-01-29 00:53:13 +02:00
|
|
|
href="<?php echo $this->config->base_url(); ?>/assets/img/favicon.ico">
|
2013-06-26 12:31:57 +03:00
|
|
|
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
background-color: #CAEDF3;
|
|
|
|
}
|
|
|
|
|
|
|
|
#message-frame {
|
|
|
|
width: 630px;
|
|
|
|
margin: 150px auto 0 auto;
|
|
|
|
background: #FFF;
|
|
|
|
border: 1px solid #DDDADA;
|
|
|
|
padding: 70px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#message-icon {
|
|
|
|
float: right;
|
|
|
|
margin-top: 17px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="message-frame" class="frame-container">
|
|
|
|
<img id="message-icon" src="<?php echo $message_icon; ?>" />
|
|
|
|
<h3><?php echo $message_title; ?></h3>
|
2013-07-03 20:27:00 +03:00
|
|
|
<p><?php echo $message_text; ?></p>
|
|
|
|
<?php
|
|
|
|
// Display exceptions (if any).
|
|
|
|
if (isset($exceptions)) {
|
|
|
|
echo '<div style="margin: 10px">';
|
|
|
|
echo '<h4>Unexpected Errors</h4>';
|
|
|
|
foreach($exceptions as $exception) {
|
|
|
|
echo exceptionToHtml($exception);
|
|
|
|
}
|
|
|
|
echo '</div>';
|
|
|
|
}
|
|
|
|
?>
|
2013-06-26 12:31:57 +03:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|