forked from kinglalu/special-octo-doodle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexternalserver2.html
executable file
·72 lines (69 loc) · 3.2 KB
/
externalserver2.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
<html class="full-height" lang="en-US">
<head>
<title>Classes</title>
<link rel="icon" href="https://www.gstatic.com/classroom/ic_product_classroom_48.png">
<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>TitaniumPhoenix</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>External Node Server</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>
<div class="d-box">
<center><h4>Features:</h4></center>
<h5>You can:
<h6>-Play YouTube videos by putting 'https://invidio.us/' in the above bar!
<h6>-Play blocked IO games.</h6>
<h6>-View webpages that require lots of scripting to function.</h6>
<h6>-Use sites that require the use of WebSocket.io to function.</h6>
<center><h5><a href="contact.html"><font color="white">If you have any issues, be sure to contact staff by clicking here</font></a></h6>
</div>
</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 = `https://kinglalu-plantlife.glitch.me/textbooks/${url}`;
return false;
};
window.onload = function() {
$('url').focus();
}
</script>
</div>
</div>
</div>
</div>
</body>
</html>