Initial commit

This commit is contained in:
2026-01-02 21:00:45 +01:00
commit f141228c32
52 changed files with 8512 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
<?php session_start(); ?>
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="../files/style.css" />
</head>
<body>
<main>
</main>
<?php
include "../files/errorcodesscript.inc.php";
require "../files/ezine_db.inc.php";
include "../files/loginscript.inc.php";
if($LoggedIn == 'true') {
$_SESSION["Benutzername"] = '';
$_SESSION["Passwort"] = '';
$_SESSION["errorCode"] = 'logoutSuccess';
print("<meta http-equiv='refresh' content='0; URL=../index'>");
}
?>
</body>
</html>