2026-06-05 00:23:43 +02:00
|
|
|
<!DOCTYPE html>
|
2026-06-05 00:28:46 +02:00
|
|
|
<html lang="<?php echo $language['code']; ?>">
|
2011-04-25 16:24:01 +01:00
|
|
|
<head>
|
2026-06-05 00:23:43 +02:00
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
<title><?php echo $heading; ?></title>
|
|
|
|
|
|
|
|
|
|
<!-- Bootstrap / theme CSS -->
|
|
|
|
|
<?php if ($theme) { ?>
|
|
|
|
|
<link rel="stylesheet" href="<?php echo base_url(); ?>assets/css/<?php echo $theme; ?>/bootstrap.min.css">
|
|
|
|
|
<link rel="stylesheet" href="<?php echo base_url(); ?>assets/css/general.css">
|
|
|
|
|
<link rel="stylesheet" href="<?php echo base_url(); ?>assets/css/<?php echo $theme; ?>/overrides.css">
|
|
|
|
|
<?php } ?>
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
html,
|
|
|
|
|
body {
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding-top: 40px;
|
|
|
|
|
padding-bottom: 40px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.error-container {
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 430px;
|
|
|
|
|
padding: 15px;
|
|
|
|
|
margin: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.error-logo {
|
|
|
|
|
max-width: 200px;
|
|
|
|
|
height: auto;
|
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.error-card {
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.error-icon {
|
|
|
|
|
font-size: 3rem;
|
|
|
|
|
color: #dc3545;
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.back-link {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.back-link:hover {
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
2011-04-25 16:24:01 +01:00
|
|
|
</head>
|
|
|
|
|
<body>
|
2026-06-05 00:23:43 +02:00
|
|
|
<main class="error-container">
|
|
|
|
|
|
|
|
|
|
<img src="<?php echo $logo; ?>" class="mx-auto d-block mainLogo error-logo" alt="">
|
|
|
|
|
|
|
|
|
|
<div class="card error-card shadow-sm">
|
|
|
|
|
<div class="card-body text-center">
|
|
|
|
|
<div class="error-icon">⚠️</div>
|
|
|
|
|
|
|
|
|
|
<h2 class="card-title h4 mb-3 text-danger">
|
|
|
|
|
404 - <?php echo $heading; ?>
|
|
|
|
|
</h2>
|
|
|
|
|
|
|
|
|
|
<p class="card-text">
|
|
|
|
|
<?php echo $message1; ?>
|
|
|
|
|
</p>
|
|
|
|
|
<p class="card-text mb-4">
|
|
|
|
|
<?php echo $message2; ?>
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<a href="<?php echo base_url(); ?>" class="btn btn-primary back-link">
|
|
|
|
|
<?php echo __("Go Back to Dashboard"); ?>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</main>
|
2011-04-25 16:24:01 +01:00
|
|
|
</body>
|
2026-06-05 00:23:43 +02:00
|
|
|
</html>
|