-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
25 lines (25 loc) · 885 Bytes
/
popup.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Your GPT to use</title>
<link rel="stylesheet" type="text/css" href="popup.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap" rel="stylesheet">
</head>
<body>
<div id="chatbox">
<div id="logo">
<img src="images/icon.png" alt="GPT Logo">
<h1>Your Handy GPT!</h1>
</div>
<div id="api-key-note">Make sure to put your OPENAI API Key in the Extension's Options Tab.</div>
<div id="messages"></div>
<div id="userInputArea">
<input type="text" id="userInput" placeholder="Type your message here...">
<button id="send">Send</button>
</div>
<div id="authored-by">Created by Omar Alhory</div>
</div>
<script src="popup.js"></script>
</body>
</html>