36 lines
1.0 KiB
PHP
36 lines
1.0 KiB
PHP
<?php
|
||
// File: 404.php
|
||
// Version: 1.0
|
||
// Purpose: Custom 404 error page with Wizdom branding.
|
||
|
||
use WizdomNetworks\WizeWeb\Core\View;
|
||
|
||
ob_start();
|
||
?>
|
||
|
||
<section class="verify-section section pt-5" style="padding-top: 7rem;">
|
||
<div class="container text-center">
|
||
<div class="icon mb-4" style="padding-top: 3rem;">
|
||
<i class="bi bi-question-circle text-warning" style="font-size: 4rem;"></i>
|
||
</div>
|
||
<h2 class="mb-3">Oops... This page got lost in the cloud</h2>
|
||
<p class="lead">
|
||
The page you’re looking for doesn’t exist or may have been moved.<br>
|
||
But hey, we’re Wizdom Networks — we can find anything. Almost.
|
||
</p>
|
||
|
||
<div class="my-4">
|
||
<img src="/assets/img/lost-in-the-cloud.webp" alt="404 - Not Found" class="img-fluid rounded shadow" style="max-width: 400px;">
|
||
</div>
|
||
|
||
<div class="mt-5 text-center">
|
||
<a href="/" class="btn btn-outline-primary">Return to Home</a>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<?php
|
||
$html = ob_get_clean();
|
||
View::render('layouts/arsha', ['content' => $html, 'hideNavbar' => true]);
|
||
?>
|