File size: 665 Bytes
2762ac8 bf21892 2762ac8 bf21892 2762ac8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | <!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> |