-
Notifications
You must be signed in to change notification settings - Fork 2
/
popup.html
34 lines (32 loc) · 890 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
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<title>Flow diagram</title>
<link rel="stylesheet" href="./popup.css" />
</head>
<body>
<div id="main">
<div id="defaultExplainer">
</div>
<div id="gpt" >
<label for="openAIKey" >OpenAI Key</label>
<input id="openAIKey" type="password" name="openAIKey" />
<button id="setKey" >Set OpenAI key</button>
</div>
<div id="flowExplainer" >
<div id="gptInputs" ></div>
<span id="error" style="font-weight: bold; color: red;" ></span>
<br />
<div id="spinner" class="lds-dual-ring">☼</div>
<span id="response" > </span>
</div>
</div>
<div id="flow" >
</div>
<script src="./scripts/popup.js" />
<script>
load();
</script>
</body>
</html>