| <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> |