This repository has been archived by the owner on Nov 18, 2019. It is now read-only.
forked from chromefoxx/phoenix-reborn
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlocal.html
69 lines (67 loc) · 3.05 KB
/
local.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
<html class="full-height" lang="en-US">
<head>
<title>My Drive - Google Drive</title>
<link rel="icon" href="https://ssl.gstatic.com/docs/doclist/images/infinite_arrow_favicon_4.ico">
<meta charset="UTF-8">
<link href="./css/bootstrap.min.css" rel="stylesheet">
<link href="./css/primary.css" rel="stylesheet">
<script src=".js/main.js"></script>
</head>
<body>
<nav class="navbar white-text navbar-expand-lg navbar-dark fixed-top" id="navbar">
<div class="container"><a class="navbar-brand" href="index.html"><strong>NauticaShard</strong></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarContent" aria-controls="navbarContent" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse" id="navbarContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item"><a class="nav-link waves-effect waves-light" href="/">Go Home</a></li>
<li class="nav-item"><a class="nav-link waves-effect waves-light" href="./selection3.html">Games</a></li>
<li class="nav-item"><a class="nav-link waves-effect waves-light" href="./selection2.html">Watch Movies/TV</a></li>
<li class="nav-item"><a class="nav-link waves-effect waves-light" href="./contributors.html">Staff & Contributors</a></li>
</ul>
<a class="btn btn-primary btn-rounded my-0 waves-effect waves-light" href="https://github.com/titaniumnetwork-dev" target="_blank">Check us out on Github!</a>
</div>
</div>
</nav>
<div class="spacefromtop">
<div class="container">
<div class "wow white-text" style="visibility:visible">
<div class="c-box">
<center>
<h3>Local CensorDodge Proxy</h3>
</center>
<center>
<form action="" method="get" id="web-search-box" style="transform:scale(1.1)">
<p>
<input type="text" placeholder="Enter URL" style="border:none;border-radius: 5px;padding:10px;" id="url" name="url" />
<input type="submit" style="border:none;border-radius: 5px;padding:10px;width:40px;background:#704ea0;color:#fff;font-weight:bold;" value="GO" />
</p>
</form>
</center>
<center>
<h4>With this proxy you can:
<h6>-Access a large number of websites with anonymity and with functionality</h6>
<h6>-View sites that render improperly with PHP-Proxy</h6>
<h6>-Play Unlocked games (ones that aren't DRM-locked to their site)</h6>
<p>-Powered by CensorDodge v1.82 Beta</p>
</center>
</div>
<script>
function $(id) {
return document.getElementById(id);
}
$('web-search-box').onsubmit = function() {
var url = $('url').value;
//this is the URL for the server
window.location.href = `cd182/index.php?cdURL=${url}`;
return false;
};
window.onload = function() {
$('url').focus();
}
</script>
</div>
</div>
</div>
</div>
</body>
</html>