wavelog/application/views/errors/html/error_404.php
2026-06-05 00:28:46 +02:00

88 lines
1.8 KiB
PHP

<!DOCTYPE html>
<html lang="<?php echo $language['code']; ?>">
<head>
<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>
</head>
<body>
<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>
</body>
</html>