license timer login with maestro

This commit is contained in:
2018-12-13 22:57:26 +09:00
parent 884eafd815
commit 5fe5f8eb24
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html>
<head>
<script>
<?php
$maestro_name = $_GET["maestro_name"];
// echo "maestro_name : $maestro_name</br>";
if($maestro_name == "") {
echo "no maestro_name";
run_url("./../../client/license_timer.html");
exit;
}
echo("sessionStorage.setItem('maestroName', '$maestro_name');\n\r");
run_url("./../../client/license_timer.html");
function run_url($targetUrl) {
echo("location.replace('$targetUrl');");
}
?>
</script>
</head>
<body>
</body>
</html>