25 lines
684 B
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>
|