WizdomWeb/resources/views/pages/404.php

36 lines
1.0 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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 youre looking for doesnt exist or may have been moved.<br>
But hey, were 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]);
?>