PHP Classes

File: resources/views/system/404.php

Recommend this page to a friend!
  Classes of Ahmad Mustapha   ReactPHP Chat Client   resources/views/system/404.php   Download  
File: resources/views/system/404.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: ReactPHP Chat Client
Implement a live chat system based on Web Sockets
Author: By
Last change:
Date: 3 years ago
Size: 714 bytes
 

Contents

Class file image Download
<!doctype html>
<html>
<head>
    <title>404(Mot Found)</title>
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <link rel="stylesheet" href="<?=url('assets/css/bootstrap.min.css')?>">
    <link href="<?=url('assets/css/style.css')?>" rel="stylesheet" id="bootstrap-css">
    <style>
        .conn-status {
            margin: 15px 25px;
        }
    </style>
</head>
<body>
<div class="card m-5 border-danger">
    <div class="card-header bg-danger text-white">404(Not Found)</div>
    <div class="card-body text-danger font-weight-bolder">
        The requested resources does not exists.<br/>
        <a href="/">Let's go home</a>
    </div>
</div>
</body>
</html>