Lachenzelg/admin/logout.php
2025-01-07 03:02:25 +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');
}
?>