PHP Classes

File: resources/views/system_errors/404.php

Recommend this page to a friend!
  Classes of Ujah Chigozie peter   Luminova Framework   resources/views/system_errors/404.php   Download  
File: resources/views/system_errors/404.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Luminova Framework
PHP Luminova framework: simple, powerful MVC/HMVC.
Author: By
Last change: New update and changes
Date: 17 days ago
Size: 1,024 bytes
 

Contents

Class file image Download
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="robots" content="noindex">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="shortcut icon" type="image/png" href="./favicon.png">
    <title>404 Page Bot Found - <?= htmlspecialchars($title ?? '', ENT_QUOTES);?></title>
    <style><?= preg_replace('#[\r\n\t ]+#', ' ', file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'debug.css')); ?></style>
</head>
<body id="e_all">
    <div class="container text-center main-container">
        <h1 class="headline">404</h1>
        <p class="entry">Error Page Not Found</p>
    </div>
    <div class="footer">
        <div class="container">

            <p>
                Displayed at <?= date('H:i:sA'); ?> &mdash;
                PHP: <?= PHP_VERSION ?> &mdash;
                Luminova: <?= \Luminova\Application\Foundation::VERSION; ?> &mdash;
                Environment: <?= ENVIRONMENT; ?>
</p>

        </div>
    </div>
</body>
</html>