This repository was archived by the owner on Dec 29, 2023. It is now read-only.
forked from ZeroGwafa/SerenTracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
116 lines (109 loc) · 5.7 KB
/
index.html
File metadata and controls
116 lines (109 loc) · 5.7 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
<html>
<head>
<link rel='stylesheet' href='https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css' integrity='sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T' crossorigin='anonymous'>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="https://runeapps.org/nis/nis.css" />
<link rel="stylesheet" type="text/css" href="css/style.css">
<script type="text/javascript" src="https://runeapps.org/runeappslib.js"></script>
<link rel="stylesheet" type="text/css" href="https://runeapps.org/runeappslib.css">
<script src="https://www.unpkg.com/@alt1/base/dist/index.bundle.js"></script>
<script src="https://www.unpkg.com/@alt1/ocr/dist/index.bundle.js"></script>
<script src="https://www.unpkg.com/@alt1/chatbox/dist/index.bundle.js"></script>
</head>
<body class="nis">
<ul class="itemList list-group"></ul>
<div class="container">
<div class="row fixed-bottom">
<div class="col">
<div class="row">
<div class="col">
<!-- <button class="tracker nisbutton">
Start
</button> -->
<button class="nisbutton" data-toggle="modal" data-target="#settings" type="button">
Settings
</button>
</div>
</div>
</div>
</div>
</div>
<div class="modal nis" tabindex="-1" role="dialog" id="settings">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Settings</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="row">
<div class="col" title="Allows the user to select the chat box the app should target.">
<h6>Select Chat</h6>
</div>
<div class="col">
<select class="chat">
<option value="">Select Chat</option>
</select>
</div>
</div>
<div class="row">
<div class="col" title="Enables the option to show the total pumpkins smashed.">
<h6>Show totals</h6>
</div>
</div>
<div class="row total-radio">
<div class="row">
<input type="radio" name="totals" id="show-totals" onclick="showItems()" checked/>
<label for="show-totals">Enabled</label>
</div>
<div class="row">
<input type="radio" name="totals" id="hide-totals" onclick="showItems()"/>
<label for="hide-totals">Disabled</label>
</div>
</div>
<div class="row">
<div class="col" title="Exports the current data as a CSV file.">
<button class='nisbutton export'>
CSV Export
</button>
</div>
</div>
<div class="row">
<div class="col">
<button class="nisbutton" data-type="reset" data-toggle="collapse" href="#resetApp">
Factory Reset
</button>
</div>
</div>
<div class="row collapse danger" id="resetApp">
<div class="col">
<div class="row">
<div class="col text-center">
This will remove all saved data and set all settings to default. This is irreversable!
</div>
</div>
<div class="row">
<div class="col">
<button class="nisbutton clear" data-type="reset" data-toggle="collapse" href="#resetApp">
Yes
</button>
</div>
<div class="col">
<button class="nisbutton" data-toggle="collapse" href="#resetApp">
No
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="scripts/script.js"></script>
</html>