Oppaitime's version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

newlocation.php 674B

12345678910111213141516171819202122232425
  1. <?
  2. if (!empty($LoggedUser['ID'])) {
  3. header('Location: login.php');
  4. die();
  5. }
  6. View::show_header('Authorize Location');
  7. if (isset($_REQUEST['act'])) {
  8. ?>
  9. Your location is now authorized to access this account.<br /><br />
  10. Click <a href="login.php">here</a> to login again.
  11. <? } else { ?>
  12. This appears to be the first time you've logged in from this location.<br /><br />
  13. As a security measure to ensure that you are really the owner of this account,<br />
  14. an email has been sent to the address in your profile settings. Please<br />
  15. click the link contained in that email to allow access from<br />
  16. your location, and then log in again.
  17. <? }
  18. View::show_footer(); ?>