This repository has been archived on 2023-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
site/src/404.php

25 lines
684 B
PHP

<!DOCTYPE html>
<html>
<head>
<?php include '/common/include.php' ?>
<title>Tyler Perkins - 404</title>
<link rel="stylesheet" href="error.css">
</head>
<body>
<?php include '/common/header.php' ?>
<div class="error-div top-fade">
<div class="error-message">
<h1>404 - Resource not found</h1>
<p>The requested resource could not be found</p>
<span>
<button onclick="history.back()">Go back</button>
<button class="error-button"><a href="/" class="error-button">Go home</a></button>
</span>
</div>
</div>
<?php include '/common/footer.php' ?>
</body>
</html>