Files
bij/public/ios/index.php
2026-04-21 05:59:39 +07:00

9 lines
151 B
PHP

<?php
session_start();
if (isset($_SESSION['token'])) {
header('Location: app/dashboard.php');
} else {
header('Location: app/login.php');
}
exit;