✅ 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">
|
||||
<title>webssh_plus</title>
|
||||
<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>
|
||||
<body>
|
||||
<div class="terminal">
|
||||
<!-- ! Here will be the terminal stuff -->
|
||||
</div>
|
||||
<script>
|
||||
// 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
|
||||
socket.on('output', function (data) {
|
||||
// Insert some line breaks where they belong
|
||||
@ -25,6 +41,5 @@ var char = String.fromCharCode(e.which);
|
||||
socket.emit("input", char);
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user