-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
26 lines (26 loc) · 1.05 KB
/
index.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
<html>
<head>
<title>wyścigi pociągów</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="join_prompt">
<h1>wyścigi pociągów</h1>
<input type="text" autocomplete="off" id="name_prompt" placeholder="nazwa"></input><br>
<input type="text" autocomplete="off" id="gameid_prompt" placeholder="id gry"></input><br>
<button onclick="gameJoin();">dołącz do gry</button>
<button onclick="gameCreate();">stwórz grę</button>
</div>
<div id="game" style="display: none;">
<div id="rails"></div>
<h3 id="game-chat"></h3>
<div id="host-panel" style="display: none;">
<button onclick="hoststart();">start</button>
</div>
<p style="user-select:text;">...</p>
</div>
<script src="main.js"></script>
</body>
</html>