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

77 lines
2.6 KiB
PHP
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<title><?php echo $this->lang->line('page_not_found') . ' - ' . $company_name; ?></title>
<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>
<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>
<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>
<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>
<?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">
<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">
<?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">
<style>
body {
background-color: #CAEDF3;
}
#message-frame {
width: 630px;
margin: 150px auto 0 auto;
background: #FFF;
border: 1px solid #DDDADA;
padding: 70px;
}
.btn {
margin-right: 10px;
}
</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 $this->config->base_url(); ?>" class="btn btn-primary btn-large">
<i class="icon-calendar icon-white"></i>
<?php echo $this->lang->line('book_appointment_title'); ?>
</a>
<a href="<?php echo $this->config->base_url(); ?>backend" class="btn btn-danger btn-large">
<i class="icon-wrench icon-white"></i>
<?php echo $this->lang->line('backend_section'); ?>
</a>
</div>
</body>
</html>