40087-vm/logout.php
2026-05-26 08:29:37 +00:00

10 lines
191 B
PHP

<?php
declare(strict_types=1);
require_once __DIR__ . '/store.php';
store_logout_user();
store_flash('success', 'Anda berhasil logout dari akun user.');
header('Location: auth.php');
exit;