We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d374351 commit f14fec9Copy full SHA for f14fec9
index.html
@@ -0,0 +1,19 @@
1
+<!DOCTYPE html>
2
+<html lang="en">
3
+<head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>GPTChat API Integration</title>
7
+ <link rel="stylesheet" href="style.css">
8
+ <script src="script.js" defer></script>
9
+</head>
10
+<body>
11
+ <div class="chat-container">
12
+ <div id="chat-output" class="chat-output"></div>
13
+ <form id="chat-form" class="chat-input-form">
14
+ <input type="text" id="chat-input" class="chat-input" placeholder="Type your message here" autocomplete="off">
15
+ <button type="submit" class="chat-submit">Send</button>
16
+ </form>
17
+ </div>
18
+</body>
19
+</html>
0 commit comments