-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (47 loc) · 2.58 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
<html>
<head>
<title></title>
<meta charset='utf-8'>
<style>
#updater:hover{
cursor:pointer;
}
</style>
<link rel="stylesheet" href="style.css" />
</head>
<body onload="init()">
<script src="p5.min.js"></script>
<script src="index.js"></script>
<script>
require('./renderer.js')
</script>
<header id="titlebar">
<div id="drag-region">
<div id="window-title">
<span>Scoreboard Host Window</span>
</div>
<div id="window-controls">
<div class="button" id="min-button">
<img class="icon" srcset="win-icons/min-w-10.png 1x, win-icons/min-w-12.png 1.25x, win-icons/min-w-15.png 1.5x, win-icons/min-w-15.png 1.75x, win-icons/min-w-20.png 2x, win-icons/min-w-20.png 2.25x, win-icons/min-w-24.png 2.5x, win-icons/min-w-30.png 3x, win-icons/min-w-30.png 3.5x" draggable="false" />
</div>
<div class="button" id="max-button">
<img class="icon" srcset="win-icons/max-w-10.png 1x, win-icons/max-w-12.png 1.25x, win-icons/max-w-15.png 1.5x, win-icons/max-w-15.png 1.75x, win-icons/max-w-20.png 2x, win-icons/max-w-20.png 2.25x, win-icons/max-w-24.png 2.5x, win-icons/max-w-30.png 3x, win-icons/max-w-30.png 3.5x" draggable="false" />
</div>
<div class="button" id="restore-button">
<img class="icon" srcset="win-icons/restore-w-10.png 1x, win-icons/restore-w-12.png 1.25x, win-icons/restore-w-15.png 1.5x, win-icons/restore-w-15.png 1.75x, win-icons/restore-w-20.png 2x, win-icons/restore-w-20.png 2.25x, win-icons/restore-w-24.png 2.5x, win-icons/restore-w-30.png 3x, win-icons/restore-w-30.png 3.5x" draggable="false" />
</div>
<div class="button" id="close-button">
<img class="icon" srcset="win-icons/close-w-10.png 1x, win-icons/close-w-12.png 1.25x, win-icons/close-w-15.png 1.5x, win-icons/close-w-15.png 1.75x, win-icons/close-w-20.png 2x, win-icons/close-w-20.png 2.25x, win-icons/close-w-24.png 2.5x, win-icons/close-w-30.png 3x, win-icons/close-w-30.png 3.5x" draggable="false" />
</div>
</div>
</div>
</header>
<br><u><h1 id="updater" hidden>A new update is available, click here to download!</h1></u>
<br><h1>Instructions:</h1>
<h2>Go to https://melee.b3nd3rssbm.repl.co/ or https://ult.b3nd3rssbm.repl.co/, depending on the game. Put in the code listed below, and fill out the other fields. Click submit and within 30 seconds the files in the ScoreFiles folder will update!</h2><br><br>
<h1>Code/Session Id: </h1>
<h1 id="code"></h1>
<br><h3>Current info: </h3>
<h3 id="jsonHere"></h3>
</body>
</html>