MaketRandevu/src/application/views/general/error404.php

86 lines
2.6 KiB
PHP
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
2017-09-05 15:58:34 +03:00
<meta charset="utf-8">
<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">
<title><?php echo $this->lang->line('page_not_found') . ' - ' . $company_name; ?></title>
2017-09-05 15:58:34 +03:00
<link rel="stylesheet" type="text/css" href="<?php echo base_url('assets/ext/bootstrap/css/bootstrap.min.css'); ?>">
2017-09-05 15:58:34 +03:00
<link rel="icon" type="image/x-icon" href="<?php echo base_url('assets/img/favicon.ico'); ?>">
2017-09-05 15:58:34 +03:00
<script>
var EALang = <?php echo json_encode($this->lang->language); ?>;
</script>
2017-09-05 15:58:34 +03:00
<script src="<?php echo base_url('assets/ext/jquery/jquery.min.js'); ?>"></script>
<script src="<?php echo base_url('assets/ext/bootstrap/js/bootstrap.min.js'); ?>"></script>
<script src="<?php echo base_url('assets/ext/datejs/date.js'); ?>"></script>
<script src="<?php echo base_url('assets/js/general_functions.js'); ?>"></script>
<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">
<h3><?php echo $this->lang->line('page_not_found')
. ' - ' . $this->lang->line('error') . ' 404' ?></h3>
<p>
<?php echo $this->lang->line('page_not_found_message'); ?>
</p>
<br>
<a href="<?php echo site_url(); ?>" class="btn btn-primary btn-large">
<span class="glyphicon glyphicon-calendar"></span>
<?php echo $this->lang->line('book_appointment_title'); ?>
</a>
<a href="<?php echo site_url('backend'); ?>" class="btn btn-default btn-large">
<span class="glyphicon glyphicon-wrench"></span>
<?php echo $this->lang->line('backend_section'); ?>
</a>
</div>
<?php google_analytics_script(); ?>
</body>
</html>