Albisrieden/admin/logout.php

11 lines
241 B
PHP
Raw Normal View History

2025-01-07 04:13:11 +01:00
<?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');
}
?>