-
-
Save rafaelkendy/a1d42fcdd9f12a10d469 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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