2013-06-26 12:31:57 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2015-04-26 17:32:50 +03:00
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
2015-04-13 21:33:59 +03:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta name="theme-color" content="#35A768">
|
2015-04-29 23:49:27 +03:00
|
|
|
<title><?php echo $message_title ?></title>
|
2013-06-26 12:31:57 +03:00
|
|
|
|
2015-04-26 17:32:50 +03:00
|
|
|
<?php
|
|
|
|
// ------------------------------------------------------------
|
|
|
|
// INCLUDE CSS FILES
|
|
|
|
// ------------------------------------------------------------ ?>
|
2015-04-13 21:33:59 +03:00
|
|
|
<link rel="stylesheet" type="text/css"
|
2015-05-28 00:15:43 +03:00
|
|
|
href="<?php echo $this->config->item('base_url'); ?>/assets/ext/bootstrap/css/bootstrap.css">
|
2015-04-26 17:32:50 +03:00
|
|
|
<link rel="stylesheet" type="text/css"
|
2015-05-28 00:15:43 +03:00
|
|
|
href="<?php echo $this->config->item('base_url'); ?>/assets/css/frontend.css">
|
2013-06-26 12:31:57 +03:00
|
|
|
|
2015-04-26 17:32:50 +03:00
|
|
|
<?php
|
|
|
|
// ------------------------------------------------------------
|
|
|
|
// SET PAGE FAVICON
|
|
|
|
// ------------------------------------------------------------ ?>
|
2015-04-13 21:33:59 +03:00
|
|
|
<link rel="icon" type="image/x-icon"
|
2015-05-28 00:15:43 +03:00
|
|
|
href="<?php echo $this->config->item('base_url'); ?>/assets/img/favicon.ico">
|
2015-04-13 21:33:59 +03:00
|
|
|
|
|
|
|
<link rel="icon" sizes="192x192"
|
2015-05-28 00:15:43 +03:00
|
|
|
href="<?php echo $this->config->item('base_url'); ?>/assets/img/logo.png">
|
2015-04-30 00:17:32 +03:00
|
|
|
|
|
|
|
<?php
|
|
|
|
// ------------------------------------------------------------
|
|
|
|
// CUSTOM PAGE JS
|
|
|
|
// ------------------------------------------------------------ ?>
|
|
|
|
<script type="text/javascript">
|
|
|
|
var EALang = <?php echo json_encode($this->lang->language); ?>;
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
// ------------------------------------------------------------
|
|
|
|
// INCLUDE JS FILES
|
|
|
|
// ------------------------------------------------------------ ?>
|
|
|
|
<script
|
|
|
|
type="text/javascript"
|
2015-05-28 00:15:43 +03:00
|
|
|
src="<?php echo $this->config->item('base_url'); ?>/assets/js/libs/jquery/jquery.min.js"></script>
|
2015-04-30 00:17:32 +03:00
|
|
|
<script
|
|
|
|
type="text/javascript"
|
2015-05-28 00:15:43 +03:00
|
|
|
src="<?php echo $this->config->item('base_url'); ?>/assets/ext/bootstrap/js/bootstrap.min.js"></script>
|
2015-04-30 00:17:32 +03:00
|
|
|
<script
|
|
|
|
type="text/javascript"
|
2015-05-28 00:15:43 +03:00
|
|
|
src="<?php echo $this->config->item('base_url'); ?>/assets/js/libs/date.js"></script>
|
2015-04-30 00:17:32 +03:00
|
|
|
<script
|
|
|
|
type="text/javascript"
|
2015-05-28 00:15:43 +03:00
|
|
|
src="<?php echo $this->config->item('base_url'); ?>/assets/js/general_functions.js"></script>
|
2013-06-26 12:31:57 +03:00
|
|
|
</head>
|
2015-04-26 17:32:50 +03:00
|
|
|
|
2013-06-26 12:31:57 +03:00
|
|
|
<body>
|
2015-04-26 17:32:50 +03:00
|
|
|
<div id="main" class="container">
|
|
|
|
<div class="wrapper row">
|
|
|
|
|
|
|
|
<div id="message-frame" class="frame-container
|
|
|
|
col-xs-12
|
|
|
|
col-sm-offset-1 col-sm-10
|
|
|
|
col-md-offset-2 col-md-8
|
|
|
|
col-lg-offset-2 col-lg-8">
|
|
|
|
|
|
|
|
<div class="col-xs-12 col-sm-2">
|
|
|
|
<img id="message-icon" src="<?php echo $message_icon; ?>" />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-xs-12 col-sm-10">
|
|
|
|
<?php
|
|
|
|
|
|
|
|
echo '<h3>' . $message_title . '</h3>';
|
|
|
|
echo '<p>' . $message_text . '</p>';
|
|
|
|
|
|
|
|
// 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>';
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
2013-06-26 12:31:57 +03:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|