-
-
Notifications
You must be signed in to change notification settings - Fork 184
/
Copy pathplay.html
40 lines (36 loc) · 997 Bytes
/
play.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home</title>
<script src="config/main.js" type="module"></script>
<style>
body {
margin: 0;
padding: 0;
}
iframe {
width: 100%;
height: 100vh;
border: none;
}
</style>
</head>
<body>
<iframe id="gameFrame"></iframe>
<script>
var serverUrl1 = "https://gms.parcoil.com";
const queryString = window.location.search;
const urlParams = new URLSearchParams(queryString);
const gameUrl = urlParams.get("gameurl");
if (!gameUrl) {
alert("Game URL not provided!");
window.location.href = "/"; // Redirect to homepage if game URL is missing
} else {
const embedUrl = `${serverUrl1}/${gameUrl}`;
document.getElementById("gameFrame").src = embedUrl;
}
</script>
</body>
</html>