-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
65 lines (63 loc) · 2.15 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<title>ContextGPT Options</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/purecss@3.0.0/build/pure-min.css" integrity="sha384-X38yfunGUhNzHpBaEBsWLO+A0HDYOQi8ufWDkZ0k9e0eXz/tH3II7uKZ9msv++Ls" crossorigin="anonymous">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- <style>
body { font-family: Arial, sans-serif; padding: 20px; }
label { display: block; margin-top: 10px; }
input[type="text"], input[type="url"] { width: 300px; }
button { margin-top: 20px; }
</style> -->
<style>
@media screen and (min-width: 48em) {
.content, .header {
padding-left: 2em;
padding-right: 2em;
}
}
.header, .legal, .pure-button, .pure-table caption {
text-align: center;
}
.header {
background: #fff;
border-bottom: 1px solid #eee;
font-family: Raleway, Helvetica Neue, Helvetica, Arial, sans-serif;
letter-spacing: .05em;
margin: 0 auto;
max-width: 768px;
}
</style>
</head>
<body>
<div class="header">
<h1>Get Started</h1>
<h2>Start your next web project with Pure.</h2>
</div>
<div class="pure-g">
<div class="pure-u-1-3"></div>
<div class="pure-u-1-3">
<h1>ContextGPT Options</h1>
<!-- <div class="header"><h1>Get Started</h1><h2>Start your next web project with Pure.</h2></div> -->
</div>
<div class="pure-u-1-3"></div>
</div>
<!-- <div class="layout" style="display: flex; justify-content: center; align-items: center; height: 100vh;">
<div id="main" class="home">
<header style="display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 20px;">
<img src="icon48.png" alt="ContextGPT Logo" style="width: 48px; height: 48px; margin-bottom: 10px;">
<h1 style="margin: 0;">ContextGPT</h1>
</header>
</div>
</div> -->
<h1>ContextGPT Options</h1>
<label>
<input type="checkbox" id="enabled"> Enable ContextGPT
</label>
<label for="apiKey">API Key:</label>
<input type="text" id="apiKey">
<button id="save">Save</button>
<script src="options.js"></script>
</body>
</html>