-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 990 Bytes
/
index.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
26
27
28
<html>
<head>
<title>GPT-3 Chat</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="settings-form">
<form id="settings-form">
<p><strong>API Token:</strong></p>
<p>
<input type="password" name="token" id="token" placeholder="Your OpenAI API Token"/>
</p>
</form>
<hr/>
</div>
<div id="conversation">
<div id="conversation-body"></div>
<div id="conversation-footer">
<form id="prompt-form">
<p><input type="text" id="text-input" placeholder="Enter prompt" autocomplete="off"></p>
<p><button id="send-button">Send</button></p>
</form>
</div>
</div>
<script src="js/index.js"></script>
</body>
</html>