36274-vm/index.php
Flatlogic Bot 76b95bec18 v1
2025-11-25 15:04:51 +00:00

8 lines
120 B
PHP

<?php
require_once 'auth.php';
if (is_logged_in()) {
require 'dashboard.php';
} else {
require 'landing.php';
}