Xx / public /terminal.html
Reaperxxxx's picture
Update public/terminal.html
bf21892 verified
raw
history blame contribute delete
665 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terminal</title>
<link rel="stylesheet" href="terminal.css">
</head>
<body>
<div id="terminal"></div>
<div id="inputArea">
<input type="text" id="command" placeholder="Type a command (e.g., node index.js)">
<button id="send">Send</button>
<button id="start">Start</button>
<button id="stop">Stop</button>
<button id="restart">Restart</button>
<button id="deploy">Deploy Kaizen</button>
</div>
<script src="terminal.js"></script>
</body>
</html>