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 678B

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