17 lines
302 B
PHP
17 lines
302 B
PHP
|
<?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');
|
||
|
}
|
||
|
?>
|