willy.club/views/errors/500.php

15 lines
416 B
PHP
Raw Normal View History

2022-11-29 12:49:29 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
2023-02-03 11:00:13 +00:00
<meta http-equiv="X-UA-Compatible" content="IE=edge">
2022-11-29 12:49:29 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2023-02-03 11:00:13 +00:00
<title>Internal Server Error</title>
2022-11-29 12:49:29 +00:00
</head>
<body>
2023-02-03 11:00:13 +00:00
<h1>Internal Server Error (××)</h1>
<?php if(!empty($error_message)): ?>
2023-02-03 13:00:23 +00:00
<pre><?=$error_message?></pre>
2023-02-03 11:00:13 +00:00
<?php endif; ?>
2022-11-29 12:49:29 +00:00
</body>
</html>