-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.php
More file actions
36 lines (36 loc) · 782 Bytes
/
Copy patherror.php
File metadata and controls
36 lines (36 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
require __DIR__.'/vendor/autoload.php';
$code = http_response_code();
$errors = [
'404' => 'Page Not Found',
'403' => 'Access Denied'
];
$error = $errors[$code];
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?=\sprintf('%s | %s', $code, $error);?></title>
<style>
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
font-family: sans-serif;
background: #f7f2f2;
display: flex;
height: 100vh;
align-items: center;
color: #a9a7a7;
justify-content: center;
}
</style>
</head>
<body>
<?php view('error')->with(['code' => $code, 'error' => $error]); ?>
</body>
</html>