This repository has been archived by the owner on Apr 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproxy.html
117 lines (112 loc) · 3.53 KB
/
proxy.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
<!DOCTYPE html>
<html>
<head>
<title id="static-title">Proxy | PB</title>
<meta name="googlebot" content="index, follow, snippet" />
<link rel="shortcut icon" href="pbgameslogo.png" />
<script src="https://cdn.jsdelivr.net/npm/libcurl.js@latest/libcurl_full.js" defer></script>
<link rel="stylesheet" type="text/css" href="ocean.css">
<style>
.header {
background-color: transparent;
padding: 10px 0;
text-align: center;
position: relative;
z-index: 1;
display: flex;
justify-content: center;
align-items: center;
}
.header a {
color: white;
text-decoration: none;
margin: 0 10px;
font-size: 18px;
transition: color 0.3s;
position: relative;
z-index: 1;
}
.header a:hover {
color: #7289da;
}
.header a span {
display: inline-block;
padding: 5px 10px;
border-radius: 20px;
background-color: rgba(255, 255, 255, 0.2); /* Adjust opacity as needed */
}
.header a img {
width: 30px;
height: 30px;
margin-right: 5px;
}
body {
font-family: Arial, sans-serif;
background: linear-gradient(to bottom, #001F3F, #003366);
background-attachment: fixed;
background-size: cover;
display: flex;
flex-direction: column;
}
.search-container {
position: relative;
width: 300px;
margin: 30px auto 30px auto;
}
#uv-address {
width: calc(100% - 40px);
padding: 10px;
border-radius: 20px;
border: none;
outline: none;
}
.desc {
margin-top: 20px;
}
h1 {
background-color: none;
color: grey;
text-align: center;
margin: 180px auto 30px auto;
}
</style>
<script src="uv/uv.bundle.js" defer></script>
<script src="uv/uv.config.js" defer></script>
<script src="register-sw.js" defer></script>
<script src="search.js" defer></script>
<script src="proxy.js" defer></script>
</head>
<body>
<div class="header">
<a href="index.html"><img src="img/home-icon.png" alt="Home Icon" /><span>Home</span></a>
<a href="projects.html"><img src="img/games-icon.png" alt="Games Icon" /><span>Games</span></a>
<a href="proxy.html"><img src="img/proxy-icon.png" alt="Proxy Icon" /><span>Proxy</span></a>
<a href="settings.html"><img src="img/settings-icon.png" alt="Settings Icon" /><span>Settings</span></a>
<a href="partners.html"><img src="img/partners-icon.png" alt="Partners Icon" /><span>Partners</span></a>
<a href="credits.html"><img src="img/extra-icon.png" alt="Credits Icon" /><span>Credits</span></a>
</div>
<h1>PB | Proxy</h1>
<form id="uv-form" class="search-container">
<input
id="uv-search-engine"
value="https://www.google.com/search?q=%s"
type="hidden"
/>
<input id="uv-address" type="text" placeholder="Search with Google or URL..." />
</form>
<div class="desc left-margin">
<p id="uv-error"></p>
<pre id="uv-error-code"></pre>
</div>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script>
document.addEventListener("mousemove", function(event) {
const x = event.clientX / window.innerWidth;
const y = event.clientY / window.innerHeight;
const bg = `radial-gradient(circle at ${x * 100}% ${y * 100}%, black 1%, #00008B 5%, rgba(0, 0, 0, 0))`;
document.body.style.background = bg;
});
</script>
<script type='text/javascript' src='//pl22957705.profitablegatecpm.com/98/b9/e9/98b9e9a175bddff2b54787b9cd76afc1.js'></script>
</body>
</html>