-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
120 lines (115 loc) · 4.45 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
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/favicon.ico" />
<title>Onu</title>
<meta
name="description"
content="Onu is an online multiplayer card game you can play with your friends for free!"
/>
<meta name="keywords" content="onu, online multiplayer, card game, friends, free" />
<style>
@font-face {
font-family: lebogoFont;
src: url("./assets/fonts/lebogo-font.woff");
}
</style>
</head>
<body>
<img src="./assets/images/Onu.png" alt="OnuLogo" id="OnuLogo" />
<div id="notifications"></div>
<div id="startScreen" class="screen">
<div class="menu">
<div class="input-group">
<label for="usernameInput">Username:</label>
<input
type="text"
maxlength="20"
placeholder="Username"
class="text-input"
autocomplete="off"
id="usernameInput"
/>
</div>
<div class="input-group">
<label for="lobbycodeInput">Lobby Code:</label>
<input
type="text"
maxlength="20"
placeholder="Lobby Code"
class="text-input"
autocomplete="off"
id="lobbycodeInput"
/>
</div>
<button id="joinGameButton">Join/Create Game</button>
</div>
</div>
<div id="lobbyScreen" class="screen">
<ol id="lobbyPlayerlist"></ol>
<div class="menu" id="lobbyMenu">
<div id="gameSettings"></div>
</div>
<div id="clientSettings">
<img
id="specateButton"
class="clientSetting"
src="/assets/images/spectate.png"
alt="Open Spectate Mode in new tab"
/>
<img
id="discordInvite"
class="clientSetting"
src="/assets/images/discord.png"
alt="Join Discord"
/>
<img
id="themeToggle"
class="clientSetting"
src="/assets/images/theme_light.png"
alt="Theme Toggle"
/>
<img
id="soundToggle"
class="clientSetting"
src="/assets/images/sound_on.png"
alt="Sound Toggle"
/>
<img
id="musicToggle"
class="clientSetting"
src="/assets/images/music_on.png"
alt="Music Toggle"
/>
</div>
</div>
<div id="gameScreen" class="screen">
<ul id="ingamePlayerlist"></ul>
<h1 id="title"></h1>
<div id="stacks">
<div id="drawstack"></div>
<div id="stack"></div>
<span id="drawAmount"></span>
</div>
<div id="deck"></div>
<div id="cs-container">
<img id="cs-bg" src="./assets/images/csbg.png" alt="color selection background" />
<img class="cs" id="r" src="./assets/images/sr.png" alt="color selection red" />
<img class="cs" id="g" src="./assets/images/sg.png" alt="color selection green" />
<img class="cs" id="b" src="./assets/images/sb.png" alt="color selection blue" />
<img class="cs" id="y" src="./assets/images/sy.png" alt="color selection yellow" />
</div>
</div>
<div id="devToggle"></div>
<div id="debugOutput">
<button id="downloadLog" class="devButton light">Download log</button>
<button id="reportLog" class="devButton light">Report log</button>
<ul id="debugLog"></ul>
</div>
<span id="versionNumber"></span>
<script type="module" src="/src/main.ts"></script>
</body>
</html>