12 lines
190 B
PHP
12 lines
190 B
PHP
<?php
|
|
include("retwis.php");
|
|
|
|
if (!isLoggedIn()) {
|
|
include("header.php");
|
|
include("welcome.php");
|
|
include("footer.php");
|
|
} else {
|
|
header("Location:home.php");
|
|
exit;
|
|
}
|
|
?>
|