Initial commit: Add Docker setup, database schema, and basic PHP application structure

This commit is contained in:
Troy Grunt
2026-02-01 17:14:55 +01:00
parent 52dc3b4536
commit 21e2eebe48
6 changed files with 129 additions and 0 deletions

14
www/card.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
$uuid = $_GET['uuid'] ?? 'keine UUID';
if(isset($_COOKIE['PHPSESSID'])){
session_start();
if($_SESSION['is_admin']??false){
header('Location: /admin.php?uuid='. $uuid);
exit(0);
}
}
echo "UUID: " . htmlspecialchars($uuid);
//TODO