Albisrieden/s/logout.php
2025-01-07 04:13:11 +01:00

11 lines
241 B
PHP

<?php
require '../config/function.php';
if(isset($_SESSION['auth'])) {
logoutSession();
redirect('../index.php', 'Erfolgreich abgemeldet', 'success');
}
else{
redirect('../index.php', 'Bitte melden Sie sich an', 'warning');
}
?>