9 lines
126 B
PHP
Executable File
9 lines
126 B
PHP
Executable File
<?php
|
|
require_once __DIR__ . '/../src/Auth.php';
|
|
|
|
$auth = new Auth();
|
|
$auth->logout();
|
|
|
|
header('Location: /login.php');
|
|
exit;
|