Viel neues

This commit is contained in:
Sven Steinert
2026-04-30 12:06:00 +02:00
parent 118809bfae
commit fce31ebcd7
1274 changed files with 181255 additions and 0 deletions

14
qa-tool/htdocs/safe.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
require_once 'vendor/autoload.php';
use Jumbojett\OpenIDConnectClient;
session_start();
include_once("config/config.php");
if (isset($_SESSION['user_authenticated']) && $_SESSION['user_authenticated'] === true) {
echo"Hallo, " . $_SESSION['user_name'];
}
else {
header("Location: login.php");
exit();
}
?>