1ra Versión

This commit is contained in:
MarcosFlorSalcedo
2026-07-14 18:24:27 -03:00
commit 8ec55e40fc
86 changed files with 15839 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
<?php
session_start();
if (!isset($_SESSION['rol'])) {
header("Location: ../html/Login.html");
exit();
}
$rol = $_SESSION['rol']; // admin, cancha, cantina
$usuario = $_SESSION['usuario'] ?? '';
$usuarioId = $_SESSION['id_usuario'] ?? null;
include __DIR__ . '/../html/Cantina.html';
?>