Basic Framework

This commit is contained in:
2024-07-13 17:22:53 +02:00
parent c1fffec124
commit 4d25387a47
22 changed files with 250 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
<!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>