mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 10:54:52 +00:00
10 lines
122 B
PHP
10 lines
122 B
PHP
<?php
|
|
|
|
if (file_exists("config.php")) {
|
|
header("Location: login.php");
|
|
|
|
} else {
|
|
header("Location: setup.php");
|
|
}
|
|
|
|
?>
|