This commit is contained in:
2025-12-09 15:33:05 -03:00
parent a1ee7d672e
commit 2115a73472
15 changed files with 2054 additions and 0 deletions

9
public/logout.php Normal file
View File

@@ -0,0 +1,9 @@
<?php
// logout.php
session_start();
require_once '../config.php';
require_once '../auth_keycloak.php';
session_destroy();
header('Location: index.php?action=logout');
exit();