Initial commit

This commit is contained in:
Daniel Brendel
2022-08-16 13:54:30 +02:00
commit 94353ac3c8
64 changed files with 32771 additions and 0 deletions

View File

@ -0,0 +1,41 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Asatru PHP - Error 500</title>
<style>
html, body {
width: 100%;
height: 100%;
background-color: rgb(30, 30, 30);
color: rgb(100, 100, 100);
}
.outer {
position: relative;
width: 100%;
height: 100%;
}
.inner {
position: absolute;
margin: 0;
top: 50%;
left: 50%;
-ms-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
font-size: 2em;
}
</style>
</head>
<body>
<div class="outer">
<div class="inner">
<strong>500</strong> | Internal server error
</div>
</div>
</body>
</html>