| 148 |
lars |
1 |
<!DOCTYPE html>
|
|
|
2 |
<html>
|
|
|
3 |
<head>
|
|
|
4 |
<meta charset="<?= $this->charset; ?>" />
|
|
|
5 |
<meta name="robots" content="noindex,nofollow,noarchive" />
|
|
|
6 |
<title>An Error Occurred: <?= $statusText; ?></title>
|
|
|
7 |
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>❌</text></svg>">
|
|
|
8 |
<style><?= $this->include('assets/css/error.css'); ?></style>
|
|
|
9 |
</head>
|
|
|
10 |
<body>
|
|
|
11 |
<div class="container">
|
|
|
12 |
<h1>Oops! An Error Occurred</h1>
|
|
|
13 |
<h2>The server returned a "<?= $statusCode; ?> <?= $statusText; ?>".</h2>
|
|
|
14 |
|
|
|
15 |
<p>
|
|
|
16 |
Something is broken. Please let us know what you were doing when this error occurred.
|
|
|
17 |
We will fix it as soon as possible. Sorry for any inconvenience caused.
|
|
|
18 |
</p>
|
|
|
19 |
</div>
|
|
|
20 |
</body>
|
|
|
21 |
</html>
|