MS-Tropical/community/verify.php
Skylear 7d1d7ff996 Upload the site
All the files associated with the old website :D
2018-03-21 11:13:03 -05:00

17 lines
302 B
PHP
Executable File

<?php
define('SAFE', true);
$LockedPages = array();
if(!empty($_GET['code']) && !empty($_GET['username'])) {
include("Pieces/header.htm");
include("Pieces/Community/verify.htm");
include("Pieces/footer.htm");
} else {
header('Location: http://localhost:8888/index.php');
}
?>