-
Notifications
You must be signed in to change notification settings - Fork 0
/
lobby.html
47 lines (35 loc) · 955 Bytes
/
lobby.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
41
42
43
44
45
46
47
<html>
<head>
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="./lobby.css">
<title>Ping Pong</title>
</head>
<body>
<script>
</script>
<script type="module" src="./lobby.js"></script>
<!-- Header -->
<header class="row">
<div class="column">
<h4>Jossaya Camille</h4>
</div>
<div class="column navbar">
<a href="/">Home</a>
<a href="/portfolio">Portfolio</a>
</div>
</header>
<div id="wrapper">
<div id="center">
<h1>Ping Pong Online</h1>
<p>Your username:</p>
<p id="user_id"></p>
<p>Your opponent:</p>
<p id="opponent_id">Waiting for opponent...</p>
<p>Game ID:</p>
<p id="game_id"></p>
<button id="delete_button"onclick="delete_game()">Back to main menu</button>
<button id="start_button" style="visibility: hidden" onclick="start_game()">Start game</button>
</div>
</div>
</body>
</html>