willy.club/views/errors/500.php

28 lines
622 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>500 Internal Server Error</title>
</head>
<body>
<style>
body {
margin: 1rem;
background: tomato;
line-height: 1.75;
font-family: "Comic Sans MS", sans-serif;
}
.error {
padding: 1rem;
margin-bottom: 1rem;
background: white;
border: .1rem solid black;
}
</style>
<h1>Error!!1 (××)</h1>
<?php foreach($error_messages as $error_message): ?>
<div class="error"><?=$error_message?></div>
<?php endforeach; ?>
</body>
</html>