Initial commit

This commit is contained in:
2025-09-22 21:02:16 +02:00
commit 8b7207c2e7
151 changed files with 10560 additions and 0 deletions

16
run/errors/403.php Normal file
View File

@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>403 - Login required</title>
</head>
<body>
<h2>403 - Login required</h2>
<form method="post" action="/403-login">
<label>Login: <input type="text" name="login" required></label><br>
<label>Password: <input type="password" name="password" required></label><br>
<button type="submit">Login</button>
</form>
</body>
</html>

9
run/errors/404.html Normal file
View File

@@ -0,0 +1,9 @@
<html>
<head>
<title>404 - File not found</title>
</head>
<body>
<h1>Error 404</h1>
<h2>The requested File was not found on this server.</h2>
</body>
</html>