PHP Classes

File: resources/views/system_errors/info.php

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

Contents

Class file image Download
<!doctype html>
<html lang="en">
<head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Critical Error Occurred</title>
    <meta charset="utf-8">
    <meta name="robots" content="noindex">
    <meta http-equiv="Cache-Control" content="no-store, max-age=0, no-cache"/>
    <link rel="shortcut icon" type="image/png" href="./favicon.png">
    <style>
        <?= preg_replace('#[\r\n\t ]+#', ' ', file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'maintenance.css')) ?>
</style>
</head>
<body>
<article>
    <h1>Critical Error!</h1>
    <div class="container">
        <p>An error is causing application to shutdown.</p>
        <p><?= date('l, F jS, Y - g:i A'); ?></p>
        <p>Current Timezone: <?= date_default_timezone_get(); ?></p>
    </div>
</article>
</body>
</html>