-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
31 lines (31 loc) · 988 Bytes
/
options.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>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<link rel="stylesheet" href="./bulma.min.css">
</head>
<body>
<section class="section">
<div class="container" style="width:768px;">
<h1 class="title"></h1>
<div class="field">
<label class="label" for="id_api"></label>
<input id="id_api" type="url" name="api" class="input" value="https://api.openai.com/v1/completions" />
<p class="help"></p>
</div>
<div class="field">
<label class="label" for="id_key"></label>
<input id="id_key" type="text" name="key" class="input" />
</div>
<div class="field">
<div class="control">
<button id="save-btn" class="button is-primary"></button>
</div>
</div>
</div>
</section>
<script src="options.js"></script>
</body>
</html>