First commit

This commit is contained in:
2022-02-22 19:07:39 +01:00
commit b67fac10bc
28 changed files with 1194 additions and 0 deletions

14
errors/error400.html Normal file
View File

@@ -0,0 +1,14 @@
<!doctype html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Błąd 400</title>
</head>
<body>
<h1>Błąd 400</h1>
<p>Niepoprawne zapytanie!</p>
</body>
</html>

14
errors/error404.html Normal file
View File

@@ -0,0 +1,14 @@
<!doctype html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Błąd 404</title>
</head>
<body>
<h1>Błąd 404</h1>
<p>Nie znaleziono szukanej strony!</p>
</body>
</html>

14
errors/error500.html Normal file
View File

@@ -0,0 +1,14 @@
<!doctype html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Błąd 500</title>
</head>
<body>
<h1>Błąd 500</h1>
<p>Wystąpił wewnętrzny błąd serwera!</p>
</body>
</html>