-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlobby.html
More file actions
145 lines (145 loc) · 4.51 KB
/
lobby.html
File metadata and controls
145 lines (145 loc) · 4.51 KB
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="keywords" content="tackle tanks, tanks, io, games, tank game" />
<meta
name="Tackle Tanks"
content="Play tackletanks.io for free! Epic tank battles, up to 100 players can join. 15 tanks to choose from with different skills and powerups! Play with your freinds!"
/>
<link rel="icon" type="image/png" href="HTML_images/Favicon.png" />
<link rel="stylesheet" href="Sources/CSS/lobby.css" />
<link rel="stylesheet" href="Sources/CSS/Background.css" />
<title>Tackle Tanks - Online Tank PvP</title>
</head>
<body>
<iframe
style="visibility: hidden"
src="ServerInformation/fetch.html"
></iframe>
<button
class="close"
type="button"
onclick="changePage('index.html')"
onmouseover="this.style.cursor='pointer'"
>
<img class="icon" src="HTML_images/Close.svg" alt="Settings" />
</button>
<div class="BACKGROUND">
<div class="bgrid">
<div class="bitem"></div>
<div class="bitem"></div>
<div class="bitem"></div>
<div class="bitem"></div>
<div class="bitem"></div>
<div class="bitem"></div>
<div class="bitem"></div>
<div class="bitem"></div>
<div class="bitem"></div>
</div>
<img
id="background"
class="TreeCorner1"
src="HTML_images/TreeCorner1.svg"
alt="Trees"
/>
<img
id="background"
class="TreeCorner2"
src="HTML_images/TreeCorner2.svg"
alt="Trees"
/>
<img
id="background"
class="TreeCorner3"
src="HTML_images/TreeCorner3.svg"
alt="Trees"
/>
<img
id="background"
class="TreeCorner4"
src="HTML_images/TreeCorner4.svg"
alt="Trees"
/>
</div>
<section class="lobby">
<div class="container grid">
<div class="roster container">
<div class="container vgrid1-8">
<h2 id="po">Players Online: 0</h2>
<div class="list">
<div id="ERROR">
<div class="errorText">ERROR 503</div>
<div class="errorDisc">
It seems as if we cannot get the list of available games.<br />Try
reloading! If reloading doesn't help, let us know by
<a
class="link"
href="https://github.com/LeeechLabStudios/Tackle-Tanks"
>Submitting an Issue on Github!</a
>
</div>
</div>
<div id="load">
<div class="errorWait">LOADING...</div>
<div class="errorDisc">
Grabbing List... (wait about 5 seconds)
</div>
</div>
<div id="noone">
<div class="errorText">NO GAMES AVAILABLE</div>
<div class="errorDisc">
Tell your friends to hop on and host a game!
</div>
</div>
<ul id="list"></ul>
</div>
</div>
</div>
<div class="vgrid8-1">
<div id="picture" class="off2">
<div id="title"></div>
<div id="gamemode"></div>
<div id="map"></div>
<div id="potg"></div>
<h4 id="h4">
Select a game from the list or click "Host Game" to create your
own game!
</h4>
</div>
<div class="grid2">
<button
class="button2 off"
id="jg"
onclick=""
type="button"
onmouseover="this.style.cursor='pointer'"
>
<h3>JOIN GAME</h3>
</button>
<button
class="button"
onclick="changePage('host.html')"
type="button"
onmouseover="this.style.cursor='pointer'"
>
<h3>HOST GAME</h3>
</button>
</div>
<button
class="button3 off3"
onclick=""
id="pg"
type="button"
onmouseover="this.style.cursor='pointer'"
>
<h3>ENTER A PRIVATE ROOM</h3>
</button>
</div>
</div>
</section>
</body>
<script src="Sources/JS/system.in.js" defer></script>
<script src="Sources/JS/lobby.js" defer></script>
</html>