-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ca1b786
commit d18205e
Showing
1 changed file
with
40 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,44 @@ | ||
<link rel="shortcut icon" type="image/png" href="https://i.ibb.co/ykjnW7w/PVPN.png"> | ||
|
||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>PlayerVPN | Proxy</title> | ||
<link rel="stylesheet" href="index.css"> | ||
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap" rel="stylesheet"> | ||
</head> | ||
<body> | ||
<div id="content"> | ||
<h1>PlayerVPN | Proxy</h1> | ||
<form id="uv-form" action="https://www.google.com/search" method="get"> | ||
<input id="uv-search-engine" name="q" value="%s" type="hidden"/> | ||
<input id="uv-address" name="q" type="text" placeholder="Fly away, search privately..." class="form__input" /> | ||
</form> | ||
</div> | ||
<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="index.js" defer></script> | ||
<script src="error.js" defer></script> | ||
</body> | ||
<html> | ||
<head> | ||
<title>PlayerVPN</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<script src="https://code.jquery.com/jquery-1.10.2.js"></script> | ||
<link rel="stylesheet" href="index.css"> | ||
<script type="text/javascript" src="//counter.websiteout.net/js/7/10/5/0"></script> | ||
<link rel="shortcut icon" type="image/jpg" href="~/favicon.ico"/> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" /> | ||
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet"> | ||
<link href="https://fonts.googleapis.com/css2?family=Oswald&display=swap" rel="stylesheet"> | ||
</head> | ||
<body> | ||
<div id="header"> | ||
<img src="https://i.ibb.co/ykjnW7w/PVPN.png" alt="Logo"> | ||
</div> | ||
<div id="content"> | ||
<h1>PlayerVPN | Proxy</h1> | ||
|
||
<form id="uv-form""> | ||
<input id="uv-search-engine" value="https://www.google.com/search?q=%s" type="hidden"/> | ||
<input id="uv-address" type="text" placeholder="Fly away, search privately..." class="form__input"/> | ||
</form> | ||
<div class="desc left-margin"> | ||
<p id="uv-error"></p> | ||
<pre id="uv-error-code"></pre> | ||
</div> | ||
<a href="discord coming soon" target="_blank" class="fa-brands fa-discord"></a> | ||
<a href="https://flixifytvisbackformoregithub.github.io/freerepo1208472/" target="_blank"class="fa-brands fa-github"></a> | ||
</div> | ||
<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="index.js" defer></script> | ||
<script src="error.js" defer></script> | ||
<div id="footer"> | ||
<p>© 2024 PLAYERVPN. All rights reserved.</p> | ||
</div> | ||
</body> | ||
</html> |