diff options
author | Thedro Neely <thedroneely@gmail.com> | 2021-09-01 21:10:52 -0400 |
---|---|---|
committer | Thedro Neely <thedroneely@gmail.com> | 2021-09-01 21:10:52 -0400 |
commit | 7bf6cf037fc1eb4c13245f679c9454ceea263c52 (patch) | |
tree | c5257932fcb3bf283e31a1cf42962ca143506c75 | |
parent | c6abcf318baccc219bfbbe428e7b0dd2389eb48a (diff) | |
download | edwinmattiacci.com-7bf6cf037fc1eb4c13245f679c9454ceea263c52.tar.gz edwinmattiacci.com-7bf6cf037fc1eb4c13245f679c9454ceea263c52.tar.bz2 edwinmattiacci.com-7bf6cf037fc1eb4c13245f679c9454ceea263c52.zip |
public: Remove error pages
-rw-r--r-- | public/error/403.html | 10 | ||||
-rw-r--r-- | public/error/404.html | 10 |
2 files changed, 0 insertions, 20 deletions
diff --git a/public/error/403.html b/public/error/403.html deleted file mode 100644 index e38aa4c..0000000 --- a/public/error/403.html +++ /dev/null @@ -1,10 +0,0 @@ -<?php require $_SERVER['DOCUMENT_ROOT'] . '/..' . '/views/partials/header.error.php'; ?> - - <h1 class="text-6xl font-bold text-red-500">403</h1> - <h2 class="text-xl text-gray-800 mb-1">Error 403 - Forbidden.</h2> - <h2 class="text-xl text-gray-800"> - You can head back to the - <a class="text-blue-500 no-underline border-b-2 border-blue-500" href="/">homepage</a>. - </h2> - -<?php require $_SERVER['DOCUMENT_ROOT'] . '/..' . '/views/partials/footer.php'; ?> diff --git a/public/error/404.html b/public/error/404.html deleted file mode 100644 index 8632267..0000000 --- a/public/error/404.html +++ /dev/null @@ -1,10 +0,0 @@ -<?php require $_SERVER['DOCUMENT_ROOT'] . '/..' . '/views/partials/header.error.php'; ?> - - <h1 class="text-6xl font-bold text-red-500">404</h1> - <h2 class="text-xl text-gray-800 mb-1">Error 404 - Page not found.</h2> - <h2 class="text-xl text-gray-800"> - You can head back to the - <a class="text-blue-500 no-underline border-b-2 border-blue-500" href="/">homepage</a>. - </h2> - -<?php require $_SERVER['DOCUMENT_ROOT'] . '/..' . '/views/partials/footer.php'; ?> |