summaryrefslogtreecommitdiff
path: root/public/app/views/error/404.php
diff options
context:
space:
mode:
authorGeorge Halkiadakis <gchalkiadakis@sklavenitis.co.gr>2023-05-04 03:02:01 +0300
committerGeorge Halkiadakis <gchalkiadakis@sklavenitis.co.gr>2023-05-04 03:02:01 +0300
commit63f714d5a78b765c117ebf6bbdfdbd748dd45644 (patch)
tree87a4db40e1ff699222ccfdf699a3904d1c665bfc /public/app/views/error/404.php
parent931a93cd7bae092e2752064568cebe407d2bf46e (diff)
downloadgyraf1gov-63f714d5a78b765c117ebf6bbdfdbd748dd45644.tar.gz
gyraf1gov-63f714d5a78b765c117ebf6bbdfdbd748dd45644.tar.bz2
gyraf1gov-63f714d5a78b765c117ebf6bbdfdbd748dd45644.zip
authentication; invitation; activation; base form setup
Diffstat (limited to 'public/app/views/error/404.php')
-rw-r--r--public/app/views/error/404.php12
1 files changed, 4 insertions, 8 deletions
diff --git a/public/app/views/error/404.php b/public/app/views/error/404.php
index a085830..41f17da 100644
--- a/public/app/views/error/404.php
+++ b/public/app/views/error/404.php
@@ -7,7 +7,6 @@
*
* optional @var $error_code (int) : error code
* optional @var $moto (string) : super-mini description text
- * optional @var $message (string)
*
*/
@@ -15,14 +14,14 @@
$error_code = 404; // set default (404)
}
- http_response_code(403);
+ http_response_code($error_code);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
- <title>404: Not Found</title>
+ <title><?=$error_code?> : <?= $moto ?? 'Not found' ?></title>
<style>
html,body{
@@ -52,13 +51,10 @@
<body>
<div class='container'>
<div class='content'>
+
<h3><?=$error_code?></h3>
<?= $moto ?? 'Not found' ?><br />
- <!--
- —
- <br />
- <span><?= $message ?? "and I still haven't found what I'm looking for." ?></span>
- -->
+
</div>
</div>
</body>