forked from Sunset-Network/Sunset-Network
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.html
139 lines (114 loc) · 5.54 KB
/
settings.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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<script src="https://kit.fontawesome.com/52676eb1e5.js" crossorigin="anonymous"></script>
<!--I have a bomb in your house-->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sunset Network | Settings</title>
<script src="/lf.js"></script>
<link rel="shortcut icon" type="x-icon" href="Icons/logo.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script async src="https://arc.io/widget.min.js#KpYQhCTB"></script>
<link href="/style.css" rel="stylesheet" type="text/css">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-PWD8SS29YZ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-PWD8SS29YZ');
</script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9212296299865138"
crossorigin="anonymous"></script>
<script type='text/javascript' src='//pl23244114.highcpmgate.com/74/97/c4/7497c4001f8d93e264c4193a579d6107.js'></script>
<script type="text/javascript">
atOptions = {
'key' : '6a33806574ef32db303a4bf23e0f0533',
'format' : 'iframe',
'height' : 600,
'width' : 160,
'params' : {}
};
</script>
<script type='text/javascript' src='//banddisordergraceless.com/9b/b7/b0/9bb7b087fd47d52b005dd7dd26fdea22.js'></script>
<script type="text/javascript" src="//www.topcreativeformat.com/6a33806574ef32db303a4bf23e0f0533/invoke.js"></script>
</head>
<body class="Settingspgg">
<div class="navbar">
<img src="Icons/logo.png" alt="Sunset Logo " id="logo">
<a href="/index.html"><i class="fa-solid fa-house fa-2xl"> </i>Home</a>
<a href="/games.html"><i class="fa-solid fa-gamepad fa-2xl"> </i>Apps</a>
<a href="/discord.html"><i class="fa-brands fa-discord fa-2xl"> </i>Discord</a>
<a href="/roadmap.html"><i class="fa-solid fa-map fa-2xl"> </i>Roadmap</a>
<a href="/settings.html"><i class="fa-solid fa-gear fa-2xl"> </i>Settings</a>
<a href="/developers&partners.html"><i class="fa-solid fa-users fa-2xl"> </i>Developers</a>
</div>
<h1 class="STXT">Settings</h1>
<div class="settingspagepleasework">
<div class="SButtonsss">
<button class="APB" onclick="changeTab(0)">Apperance</button>
<button class="CLB" onclick="changeTab(1)">Cloaking</button>
<button class="PRB" onclick="changeTab(2)">Proxy</button>
</div>
<div class="settingsalign">
<div id="tab0" class="tab active">
<div class="Changetheeeme card">
<a class="Baseofsbutton">
<p class="SBT"> Change Theme </p>
<button id="changeGradient" class="gradientButton">Change Theme</button>
</a>
</div>
</div>
<div id="tab1" class="tab">
<div class="paniicbuttonn card">
<a class="Baseofsbutton">
<p class="SBT"> Panic Button<br>
<p class="rtabtxt"> (Redirects to about:blank) </p>
</p>
<button id="open-tab-btn" class="Panbutton"><a href="about:blank" target="_blank"
style="color: rgb(255, 255, 255);">Click Me</a></button>
</a>
</div>
<div class="Selecthotkeyyyyy card">
<p class="SBT">Select a Hotkey</p>
<p class="rtabtxt">(To quick redirect to chosen URL)<br>(Defaults to google.com)</p>
<input type="text" id="hotkey-input" placeholder="Press a key...">
<br>
<button id="change-hotkey-btn">Change Hotkey</button>
</div>
<div class="redirectchoice card">
<p class="SBT">Choose Redirect</p>
<p class="rtabtxt">(Paste in URL you want hotkey to redirect to)</p>
<input type="text" id="redirect-url-input" placeholder="Paste URL here...">
<br>
<button id="change-URL-btn">Change Redirect URL</button>
</div>
</div>
<div id="tab2" class="tab">
<div class="prxyyytype card">
<p class="SBT">Browser Type</p>
<select id="searchtype" class="presetSelect" name="switch Theme">
<option value="https://google.com/search?q=%s">Google</option>
<option value="https://www.bing.com/search?q=%s">Bing
</option>
<option value="https://duckduckgo.com/?q=%s">DuckDuckGo</option>
</select>
<button class="Panbutton" onclick="switchSearch(); location.reload();">Save</button>
</div>
</div>
</div>
</div>
</div>
<script>
let tabs = Array.from(document.getElementsByClassName('tab'));
function changeTab(index) {
tabs.forEach((tab, i) => {
tab.classList.toggle('active', i === index);
});
}
</script>
<script src="settings.js" defer></script>
<script src="hotkey.js" defer></script>
</body>
</html>