PHP Classes

File: app/Views/errors/404.php

Recommend this page to a friend!
  Classes of Rodrigo Faustino   PHP MVC App   app/Views/errors/404.php   Download  
File: app/Views/errors/404.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: PHP MVC App
MVC based application for the Web and as an API
Author: By
Last change:
Date: 10 days ago
Size: 578 bytes
 

Contents

Class file image Download
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>404 Not Found</title>
    <link rel="stylesheet" href="/assets/css/style.css">
</head>
<body>
    <?php include __DIR__. '/../templates/partials/header.php'; ?>

    <div class="container">
        <h1>404 Not Found</h1>
        <p>Sorry, the page you are looking for does not exist.</p>
        <a href="/">Go to Home</a>
    </div>
   
    <?php include __DIR__. '/../templates/partials/footer.php'; ?>
</body>
</html>