mirror of
https://github.com/vicr123/AstralMod.git
synced 2025-01-22 20:01:47 -05:00
24 lines
No EOL
720 B
HTML
24 lines
No EOL
720 B
HTML
<html>
|
|
<head>
|
|
<title>AstralMod Console</title>
|
|
</head>
|
|
<body>
|
|
<h1>AstralMod Console</h1>
|
|
<div id="commandBox">
|
|
<input type="text" id="nextCommand" />
|
|
<button onclick="sendCommand()" >Go</button>
|
|
</div>
|
|
<div id="output">
|
|
</div>
|
|
|
|
<script>
|
|
function sendCommand() {
|
|
var textbox = document.getElementById("nextCommand");
|
|
var httpRequest = new XMLHttpRequest();
|
|
httpRequest.open("POST", "http://" + window.location.host + "/runCommand");
|
|
httpRequest.send(textbox.value);
|
|
textbox.value = "";
|
|
}
|
|
</script>
|
|
</body>
|
|
</html> |