retwis/index.php
2018-12-27 16:00:48 +01:00

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;
}
?>