This repository has been archived by the owner on May 7, 2024. It is now read-only.
forked from lovelylagrande/Dashcraft-thingy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (43 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>DashCraft Info</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
<script src="https://cdn.syncfusion.com/ej2/dist/ej2.min.js" type="text/javascript"></script>
<script src="script.js"></script>
</head>
<body>
<p>Paste any track link and click the button</p>
<p>Nothing happens if the link is invalid, so try a different one</p>
<br>
<button class="button" onclick="main()">Get Info</button>
<input class="textinput" type=“text” id="IDinput" placeholder="Paste link here">
<div class="row">
<div class="column">
<p class="important" id="p1">General info</p>
</div>
<div class="column">
<p class="important" id="p2">Piece counter</p>
</div>
<div class="column">
<p class="important" id="p3">Leaderboard+</p>
</div>
</div>
<br>
<button class="button" onclick="wrCount(false)">Count Verified Records</button>
<button class="button" onclick="wrCount(true)">Count ALL Records</button>
<div class="right">
</div>
<div>
<input type="checkbox" id="cheatFilter" name="cheatFilter" checked>
<label class="p" for="cheatFilter">Filter out hacks and cheats</label>
</div>
<p id="loading"></p>
<p id="loadingNum"></p>
<div id="container"></div>
<div class="important" id="recordList"></div>
</body>
</html>