summaryrefslogtreecommitdiff
path: root/connection/private/index.html
diff options
context:
space:
mode:
author8cy <[email protected]>2020-05-08 20:41:21 -0700
committer8cy <[email protected]>2020-05-08 20:41:21 -0700
commit6922243768ed8621270f1b111a6f2630d688e787 (patch)
treebdf3cd6f4bfc5004c724f07c419405d4a6fcbd49 /connection/private/index.html
parentstage 2 (diff)
downloadacantha.ga-admin-master.tar.xz
acantha.ga-admin-master.zip
new terminal thing stage 3HEADmaster
Diffstat (limited to 'connection/private/index.html')
-rw-r--r--connection/private/index.html58
1 files changed, 0 insertions, 58 deletions
diff --git a/connection/private/index.html b/connection/private/index.html
deleted file mode 100644
index a858dee..0000000
--- a/connection/private/index.html
+++ /dev/null
@@ -1,58 +0,0 @@
-<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