-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
51 lines (51 loc) · 1.13 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Web Page Summarizer Options</title>
<style>
body {
font-family: Arial, sans-serif;
padding: 20px;
max-width: 600px;
margin: 0 auto;
}
h1 {
color: #4a90e2;
}
label {
display: block;
margin-bottom: 5px;
}
input[type="text"] {
width: 100%;
padding: 5px;
margin-bottom: 10px;
}
button {
background-color: #4a90e2;
color: white;
border: none;
padding: 10px 20px;
cursor: pointer;
}
button:hover {
background-color: #3a7bc8;
}
#status {
margin-top: 10px;
font-weight: bold;
}
</style>
</head>
<body>
<h1>Web Page Summarizer Options</h1>
<label for="anthropicApiKey">Anthropic API Key:</label>
<input type="text" id="anthropicApiKey" placeholder="Enter your Anthropic API key">
<label for="openaiApiKey">OpenAI API Key:</label>
<input type="text" id="openaiApiKey" placeholder="Enter your OpenAI API key">
<button id="saveBtn">Save</button>
<div id="status"></div>
<script src="options.js"></script>
</body>
</html>