✅ Finished up (so far)!
This commit is contained in:
parent
0bf0b9d0a5
commit
803f76ac05
19
index.html
19
index.html
@ -6,11 +6,27 @@
|
|||||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||||
<title>webssh_plus</title>
|
<title>webssh_plus</title>
|
||||||
<script src="/socket.io/socket.io.js"></script>
|
<script src="/socket.io/socket.io.js"></script>
|
||||||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.terminal {
|
||||||
|
font-family: monospace;
|
||||||
|
color: white;
|
||||||
|
background: black;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<div class="terminal">
|
||||||
|
<!-- ! Here will be the terminal stuff -->
|
||||||
|
</div>
|
||||||
<script>
|
<script>
|
||||||
// Connect to the socket.io server
|
// Connect to the socket.io server
|
||||||
var socket = io.connect('http://localhost:8080');
|
var socket = io.connect('http://localhost:9774');
|
||||||
// Wait for data from the server
|
// Wait for data from the server
|
||||||
socket.on('output', function (data) {
|
socket.on('output', function (data) {
|
||||||
// Insert some line breaks where they belong
|
// Insert some line breaks where they belong
|
||||||
@ -25,6 +41,5 @@ var char = String.fromCharCode(e.which);
|
|||||||
socket.emit("input", char);
|
socket.emit("input", char);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
Loading…
Reference in New Issue
Block a user