diff options
Diffstat (limited to 'linkshorter/view/templ-notfound.php')
| -rw-r--r-- | linkshorter/view/templ-notfound.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/linkshorter/view/templ-notfound.php b/linkshorter/view/templ-notfound.php new file mode 100644 index 0000000..66d654b --- /dev/null +++ b/linkshorter/view/templ-notfound.php @@ -0,0 +1,14 @@ +<?php + header($_SERVER["SERVER_PROTOCOL"] . " 404 Not Found"); + header("X-Request-Id: " . $_REQUEST["short"]); + $title= "404 Not Found"; + require 'view/templ-head.php'; +?> +<div class="container text-center pagination-centered"> + <div class="row"> + <h1>Failure - Not Found</h1> + <hr> + <h4>The requested URL ('<?php echo htmlentities($_SERVER["REQUEST_URI"]); ?>') wasn't found on this server.</h4> + </div> +</div> + <?php require("../tools/footer.php"); ?> |
