23 lines
626 B
PHP
23 lines
626 B
PHP
<!doctype html>
|
|
<html lang="de">
|
|
|
|
<head>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
|
|
|
|
<title>
|
|
Server Error
|
|
</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="site-content" class="site-content">
|
|
<div class="p-5 mb-4 bg-light rounded-3">
|
|
<div class="container-fluid py-5">
|
|
<h1 class="display-5 fw-bold">500 Internal Server Error</h1>
|
|
<pre class="col-md-8 fs-4"><?= $e->getMessage() ?></pre>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|