Files
contenedor_ibiza/public/logout.php
2026-01-19 15:20:36 -06:00

9 lines
126 B
PHP
Executable File

<?php
require_once __DIR__ . '/../src/Auth.php';
$auth = new Auth();
$auth->logout();
header('Location: /login.php');
exit;