if (!empty($LoggedUser['ID'])) {
header('Location: login.php');
die();
}
View::show_header('Authorize Location');
if (isset($_REQUEST['act'])) {
?>
Your location is now authorized to access this account.
Click here to login again.
} else { ?>
This appears to be the first time you've logged in from this location.
As a security measure to ensure that you are really the owner of this account,
an email has been sent to the address in your profile settings. Please
click the link contained in that email to allow access from
your location, and then log in again.
}
View::show_footer(); ?>