File size: 654 Bytes
945b70e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html>

<head>
    <title>AI Patcher</title>
    <link rel="stylesheet" type="text/css" href="../../index.css">
</head>

<body>
    <h1>help</h1>
    <form action="" onsubmit="sendMessage(event)">
        <div class="command">
            <label for="command">Command:</label>
            <input type="text" id="command" name="command" required />
        </div>
        <button>Send</button>
    </form>
    <div style="display: flex;">
        <div class="response">
            <label for="messages">Response:</label>
            <pre id="messages"></pre>
        </div>
    </div>
    <script src="index.js"></script>
</body>

</html>