-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
21 lines (21 loc) · 832 Bytes
/
popup.html
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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OpenAI Chatbot</title>
<link rel="stylesheet" href="popup.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/1.6.7/axios.min.js" integrity="sha512-NQfB/bDaB8kaSXF8E77JjhHG5PM6XVRxvHzkZiwl3ddWCEPBa23T76MuWSwAJdMGJnmQqM0VeY9kFszsrBEFrQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
</head>
<body>
<div class="chat-container">
<div id="chat-output"></div>
<div class="chat-input">
<input type="text" id="user-input" placeholder="Type your message...">
<div id="send-btn" class="send-btn">►</div>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>