summaryrefslogtreecommitdiff
path: root/connection/private/index.html
diff options
context:
space:
mode:
author8cy <[email protected]>2020-04-23 01:42:13 -0700
committer8cy <[email protected]>2020-04-23 01:42:13 -0700
commit9edf1fa9431016cdd4e08c8afaff52cf0909f22b (patch)
tree2d35a76b5103f43af419400b4c5492eae84b146b /connection/private/index.html
parentchange verify upload button (diff)
downloadacantha.ga-admin-legacy-2.tar.xz
acantha.ga-admin-legacy-2.zip
stage 2legacy-2
Diffstat (limited to 'connection/private/index.html')
-rw-r--r--connection/private/index.html58
1 files changed, 58 insertions, 0 deletions
diff --git a/connection/private/index.html b/connection/private/index.html
new file mode 100644
index 0000000..a858dee
--- /dev/null
+++ b/connection/private/index.html
@@ -0,0 +1,58 @@
+<html>
+ <head>
+ <meta charset="utf-8" />
+ <meta http-equiv="X-UA-Compatible" content="chrome=1" />
+ <title>198.168.0.1</title>
+ <!--<script src="http://www.codehelper.io/api/ips/?js"></script>-->
+ <script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
+ <link href="https://fonts.googleapis.com/css?family=Inconsolata"
+ rel="stylesheet" type="text/css" />
+ <link rel="stylesheet" href="main.css">
+ <script src="other.js"></script>
+ <script>
+ $(function() {
+
+ // Set the command-line prompt to include the user's IP Address
+ //$('.prompt').html('[' + codehelper_ip["IP"] + '@HTML5] # ');
+ var ip = (Math.floor(Math.random() * 255) + 1) + "." + (Math.floor(Math.random() * 255)) + "." + (Math.floor(Math.random() * 255)) + "." + (Math.floor(Math.random() * 255));
+ //$('.prompt').html('[[email protected]] # ');
+ $('.prompt').html('[user@' + ip + '] # ');
+
+ // Initialize a new terminal object
+ var term = new Terminal('#input-line .cmdline', '#container output');
+ term.init();
+
+ // Update the clock every second
+ setInterval(function() {
+ function r(cls, deg) {
+ $('.' + cls).attr('transform', 'rotate('+ deg +' 50 50)')
+ }
+ var d = new Date()
+ r("sec", 6*d.getSeconds())
+ r("min", 6*d.getMinutes())
+ r("hour", 30*(d.getHours()%12) + d.getMinutes()/2)
+ }, 1000);
+ });
+ </script>
+ </head>
+ <body>
+ <div id="container">
+ <output></output>
+ <div id="input-line" class="input-line">
+ <div class="prompt"></div><div><input class="cmdline" autofocus /></div>
+ </div>
+ </div>
+
+ <div class="clock-container">
+ <svg viewBox="0 0 100 100">
+ <circle cx="50" cy="50" r="45"/>
+ <g>
+ <rect class="hour" x="47.5" y="12.5" width="5" height="40" rx="2.5" ry="2.55" />
+ <rect class="min" x="48.5" y="12.5" width="3" height="40" rx="2" ry="2"/>
+ <line class="sec" x1="50" y1="50" x2="50" y2="16" />
+ </g>
+ </svg>
+ </div>
+
+ </body>
+</html> \ No newline at end of file