2016-01-06 22:56:22 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2017-09-05 15:58:34 +03:00
|
|
|
<meta charset="utf-8">
|
2016-01-06 22:56:22 +02:00
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta name="theme-color" content="#35A768">
|
2017-09-14 16:18:20 +03:00
|
|
|
<title><?= lang('page_not_found') . ' - ' . $company_name ?></title>
|
2016-01-06 22:56:22 +02:00
|
|
|
|
2017-11-14 16:01:49 +03:00
|
|
|
<link rel="stylesheet" type="text/css" href="<?= asset_url('assets/ext/bootstrap/css/bootstrap.min.css') ?>">
|
2016-01-17 14:10:48 +02:00
|
|
|
|
2017-11-14 16:01:49 +03:00
|
|
|
<link rel="icon" type="image/x-icon" href="<?= asset_url('assets/img/favicon.ico') ?>">
|
2016-01-06 22:56:22 +02:00
|
|
|
|
2017-09-05 15:58:34 +03:00
|
|
|
<script>
|
2017-09-14 16:18:20 +03:00
|
|
|
var EALang = <?= json_encode($this->lang->language) ?>;
|
2016-01-06 22:56:22 +02:00
|
|
|
</script>
|
|
|
|
|
2017-11-14 16:01:49 +03:00
|
|
|
<script src="<?= asset_url('assets/ext/jquery/jquery.min.js') ?>"></script>
|
|
|
|
<script src="<?= asset_url('assets/ext/bootstrap/js/bootstrap.min.js') ?>"></script>
|
|
|
|
<script src="<?= asset_url('assets/ext/datejs/date.js') ?>"></script>
|
|
|
|
<script src="<?= asset_url('assets/js/general_functions.js') ?>"></script>
|
2016-01-17 14:10:48 +02:00
|
|
|
|
2016-01-06 22:56:22 +02:00
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: middle;
|
|
|
|
background-color: #CAEDF3;
|
|
|
|
}
|
|
|
|
|
|
|
|
#message-frame {
|
|
|
|
width: 630px;
|
|
|
|
margin: auto;
|
|
|
|
background: #FFF;
|
|
|
|
border: 1px solid #DDDADA;
|
|
|
|
padding: 70px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media(max-width: 640px) {
|
|
|
|
body {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
#message-frame {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="message-frame" class="frame-container">
|
2017-09-14 16:18:20 +03:00
|
|
|
<h3><?= lang('page_not_found')
|
2017-09-08 15:06:37 +03:00
|
|
|
. ' - ' . lang('error') . ' 404' ?></h3>
|
2016-01-06 22:56:22 +02:00
|
|
|
<p>
|
2017-09-14 16:18:20 +03:00
|
|
|
<?= lang('page_not_found_message') ?>
|
2016-01-06 22:56:22 +02:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<br>
|
|
|
|
|
2017-09-14 16:18:20 +03:00
|
|
|
<a href="<?= site_url() ?>" class="btn btn-primary btn-large">
|
2016-01-06 22:56:22 +02:00
|
|
|
<span class="glyphicon glyphicon-calendar"></span>
|
2017-09-14 16:18:20 +03:00
|
|
|
<?= lang('book_appointment_title') ?>
|
2016-01-06 22:56:22 +02:00
|
|
|
</a>
|
|
|
|
|
2017-09-14 16:18:20 +03:00
|
|
|
<a href="<?= site_url('backend') ?>" class="btn btn-default btn-large">
|
2016-01-06 22:56:22 +02:00
|
|
|
<span class="glyphicon glyphicon-wrench"></span>
|
2017-09-14 16:18:20 +03:00
|
|
|
<?= lang('backend_section') ?>
|
2016-01-06 22:56:22 +02:00
|
|
|
</a>
|
|
|
|
</div>
|
2016-01-17 14:10:48 +02:00
|
|
|
|
2017-09-14 16:18:20 +03:00
|
|
|
<?php google_analytics_script() ?>
|
2016-01-06 22:56:22 +02:00
|
|
|
</body>
|
|
|
|
</html>
|