-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.html
More file actions
63 lines (55 loc) · 1.05 KB
/
Copy pathsettings.html
File metadata and controls
63 lines (55 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Settings</title>
<style>
body {
background: #111;
color: #eee;
font-family: system-ui;
padding: 16px;
}
label {
display: block;
margin: 12px 0;
}
h2 {
margin-top: 0;
}
button {
margin-top: 16px;
padding: 8px 14px;
background: #222;
color: #eee;
border: 1px solid #333;
border-radius: 6px;
cursor: pointer;
}
button:hover {
background: #333;
}
</style>
</head>
<body>
<h2>Settings</h2>
<label>
<input type="checkbox" id="updates">
Automatically check for updates
</label>
<label>
<input type="checkbox" id="discord">
Discord Rich Presence
</label>
<label>
<input type="checkbox" id="confirmexit">
Confirm on exit
</label>
<label>
<input type="checkbox" id="devmenu">
Enable Dev Options (REQUIRES A RESTART)
</label>
<button id="resetSettings">Reset to Default Settings</button>
</body>
</html>
<script src="settings.js"></script>