Skip to content

Instantly share code, notes, and snippets.

Created December 5, 2014 02:00
Show Gist options
  • Save anonymous/8c09f4c16d11d1903c7d to your computer and use it in GitHub Desktop.
Save anonymous/8c09f4c16d11d1903c7d to your computer and use it in GitHub Desktop.
<html>
<head>
<title>Welcome to Public WiFi</title>
</head>
<body>
<h1>Welcome to Public WiFi</h1>
<?php
$base_grant_url = urldecode($_GET['base_grant_url']);
$user_continue_url = urldecode($_GET['user_continue_url']);
$override_continue_url = 'http://mycompany.com/you_are_now_authenticated';
$override_the_users_request = false;
if ($override_the_users_request) {
$grant_url = $base_grant_url . "?continue_url=" . urlencode($override_continue_url);
} else {
$grant_url = $base_grant_url . "?continue_url=" . urlencode($user_continue_url);
}
// The following parameters may be used for tracking purposes. They are not necessary for authentication.
$node_id = urldecode($_GET['node_id']);
$gateway_id = urldecode($_GET['gateway_id']);
$client_ip = urldecode($_GET['client_ip']);
?>
<div>
<p>Thank you for associating to Public WiFi. By continuing you agree to our terms of service.</p>
<a href="<?php print $grant_url ?>">Click here to continue to the internet</a>
</div>
</body>
</html>
@rafaelkendy
Copy link

Hi,
Is this correct? Isn't it always going to be false?

$override_the_users_request = false;
if ($override_the_users_request) {

Thanks!

@zacharyblank
Copy link

@rafaelkendy I believe it is just an example. You would want to code you own logic for that piece.

@vanbernaert
Copy link

By clicking on the grant url, I go to a next page in the splash screen ... but white, nothing ... and the splash screens stays. Screenshot: http://screenshot.s.emp.re/image/1V1y0l373e0C

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment