-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlobby.php
52 lines (43 loc) · 1.5 KB
/
lobby.php
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
41
42
43
44
45
46
47
48
49
50
51
52
<?php
require_once("action/LobbyAction.php");
$action = new LobbyAction();
$data = $action->execute();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Lobby Magix</title>
<script defer src="js/lobby.js"></script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="stylesheet" href="css/lobby.css">
</head>
<body>
<iframe class="deck-frame" style="width:1100px;height:85vh;"
src="https://magix.apps-de-cours.com/server/#/deck/<?= $_SESSION["key"] ?>">
</iframe>
<div class="welcome">Welcome, <span class="username"><?= $_SESSION["username"] ?></span> !</div>
<div class="chat-frame">
<iframe style="width:700px;height:240px;"
src="https://magix.apps-de-cours.com/server/#/chat/<?= $_SESSION["key"] ?>">
</iframe>
</div>
<div class="deck menu"></div>
<div class="play menu">
<a href="?play=true"></a>
</div>
<div class="practice menu">
<a href="?practice=true"></a>
</div>
<div class="stats menu">
<a href="statscards.php"></a>
</div>
<div class="logout menu">
<a href="?logout=true"></a>
</div>
<div class="deck-text description">Open<br>Deck</div>
<div class="play-text description">Play</div>
<div class="practice-text description">Practice</div>
<div class="stats-text description">Cards<br>Stats</div>
<div class="logout-text description">Logout</div>
</body>