-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.html
30 lines (29 loc) · 946 Bytes
/
app.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Popup</title>
<script src="scripts/page-check.js" defer></script>
<link rel="stylesheet" href="app-style.css">
</head>
<body>
<h1 id="default">You are not currently in Roblox!</h1>
<div id="app" style="display:none;">
<h1 class="title"><b>Search for a Server...</b></h1>
<br>
<div id="input-container">
<h1 class="centered">Game ID</h1>
<input id="game-id" placeholder="Game ID">
<h1 class="centered">Player Name or ID</h1>
<input id="player-id" placeholder="Player Name or ID">
</div>
<div id="player-container">
</div>
<div id="buttons-container">
<button><b>Search</b></button>
<button class="inactive"><b>Join</b></button>
</div>
</div>
</body>
</html>