JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
run.sh: complain if not passed width/height
[watch-my-terminal.git] / index.html
index daa26ae..0ed8616 100644 (file)
@@ -1,7 +1,26 @@
-<script src="/socket.io/socket.io.js"></script>
-<script>
-  var socket = io.connect('http://localhost');
-  socket.on('write', function (data) {
-    console.log(data);
-  });
-</script>
+<!DOCTYPE html>
+<html lang="en">
+<head>
+       <title>Remote Terminal Viewer</title>
+       <script src="/jquery.js"></script>
+       <script src="/terminal.js"></script>
+       <script src="/htmlterm.js"></script>
+       <script src="/client.js"></script>
+       <script src="/socket.io/socket.io.js"></script>
+       <style>
+               body {
+                       font-family: monospace;
+                       font-size: 12px;
+                       line-height: 14px;
+                       padding: 0;
+                       margin: 0;
+               }
+               body code {
+                       display: block;
+                       white-space: pre;
+               }
+       </style>
+</head>
+<body>
+</body>
+</html>