Add Meraki integration

This commit is contained in:
Nasir Hafeez
2022-11-24 15:04:20 +05:00
parent ad6ba2b2c6
commit 11953a65ed
2 changed files with 21 additions and 0 deletions

5
Meraki/connect.php Normal file
View File

@@ -0,0 +1,5 @@
<?php
session_start();
$url = $_SESSION['url'];
header("Location: $url");

16
Meraki/index.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
session_start();
$_SESSION['url'] = $_GET['base_grant_url'] . '?continue_url=' . $_GET['user_continue_url'];
?>
<html>
<body>
<form method="post" action="connect.php">
<input type="submit" name="submit" value="LOGIN"/>
</form>
</body>
</html>