-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
31 lines (31 loc) · 1.01 KB
/
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
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/icon/logo.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Text completion extension</title>
<div id="app"></div>
<script type="module" src="/src/popup/index.js"></script>
<link rel="stylesheet" href="./popup.css">
</head>
<body>
<h1>Text completion</h1>
<div class="form-group">
<label for="apiKeyInput">API Key:</label>
<input type="text" id="apiKeyInput" />
</div>
<div class="button-group">
<button id="updateApiKeyButton">Update API Key</button>
<button id="checkBalanceButton">Balance</button>
</div>
<div class="form-group">
<label for="models">API Model :</label>
<select id="api_model" name="api_models">
<option value="chatweb">Chatgpt web</option>
<option value="chat3">Chatgpt 3</option>
<option value="chat35">Chatgpt 3.5</option>
</select>
</div>
</body>
</html>