Skip to content

Instantly share code, notes, and snippets.

@rafaelkendy
Forked from anonymous/Clickthrough Splash
Last active August 29, 2015 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rafaelkendy/a1d42fcdd9f12a10d469 to your computer and use it in GitHub Desktop.
Save rafaelkendy/a1d42fcdd9f12a10d469 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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment