Initial commit: Dockerize Cazubu
All checks were successful
Docker Build & Push / build-and-push (push) Successful in 1m36s

This commit is contained in:
Gemini Bot
2025-12-07 17:09:16 +00:00
commit 61ede4c325
37 changed files with 2527 additions and 0 deletions

7
logout.php Normal file
View File

@@ -0,0 +1,7 @@
<?php
session_start();
$_SESSION = array();
session_destroy();
header("location: login.php");
exit;
?>