initial commit

This commit is contained in:
2025-08-08 12:25:26 +02:00
commit b146b71d61
37 changed files with 423 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>400 Bad Request</title>
<link rel="stylesheet" href="custom_error.css">
</head>
<body>
<div class="center">
<img src="custom_400.png" alt="400">
</div>
</body>
</html>

BIN
errorpages/custom_400.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>401 Unauthorized</title>
<link rel="stylesheet" href="custom_error.css">
</head>
<body>
<div class="center">
<img src="custom_401.png" alt="401">
</div>
</body>
</html>

BIN
errorpages/custom_401.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>403 Forbidden</title>
<link rel="stylesheet" href="custom_error.css">
</head>
<body>
<div class="center">
<img src="custom_403.png" alt="403">
</div>
</body>
</html>

BIN
errorpages/custom_403.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 Not Found</title>
<link rel="stylesheet" href="custom_error.css">
</head>
<body>
<div class="center">
<img src="custom_404.png" alt="404">
</div>
</body>
</html>

BIN
errorpages/custom_404.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>500 Internal Server Error</title>
<link rel="stylesheet" href="custom_error.css">
</head>
<body>
<div class="center">
<img src="custom_500.png" alt="500">
</div>
</body>
</html>

BIN
errorpages/custom_500.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>502 Bad Gateway</title>
<link rel="stylesheet" href="custom_error.css">
</head>
<body>
<div class="center">
<img src="custom_502.png" alt="502">
</div>
</body>
</html>

BIN
errorpages/custom_502.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>503 Service Unavailable</title>
<link rel="stylesheet" href="custom_error.css">
</head>
<body>
<div class="center">
<img src="custom_503.png" alt="503">
</div>
</body>
</html>

BIN
errorpages/custom_503.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>504 Gateway Timeout</title>
<link rel="stylesheet" href="custom_error.css">
</head>
<body>
<div class="center">
<img src="custom_504.png" alt="504">
</div>
</body>
</html>

BIN
errorpages/custom_504.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View File

@@ -0,0 +1,6 @@
.center {
display: flex;
justify-content: center;
align-items: center;
height: 90vh;
}