diff options
author | cflip <36554078+cflip@users.noreply.github.com> | 2021-03-25 19:57:42 -0600 |
---|---|---|
committer | cflip <36554078+cflip@users.noreply.github.com> | 2021-03-25 19:57:42 -0600 |
commit | d4a657334d4100c29a700d21e05b5e7fef8fce64 (patch) | |
tree | 031508ff1ab34820dceceb7ae2a7e772db6fbf5e /templates/404.php | |
parent | 0ecae4e72d7d4ace51b731ff2c5d5eb63351e3e1 (diff) |
Create 404 page for invalid ids
Diffstat (limited to 'templates/404.php')
-rw-r--r-- | templates/404.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/404.php b/templates/404.php new file mode 100644 index 0000000..9ba4bcc --- /dev/null +++ b/templates/404.php @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> +<head> + <title>cflip.net forum</title> +</head> +<body> + <?php include_once 'header.php'; ?> + <h1>Page Not Found</h1> + <p>The page you requested does not exist.</p> +</body> +</html>
\ No newline at end of file |