-
Notifications
You must be signed in to change notification settings - Fork 4
/
options.html
75 lines (75 loc) · 1.5 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
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<head>
<title>GPT ZoomEye plugin options</title>
<style type="text/css">
body {
background-color: #F5F5F5;
font-family: Arial, Helvetica, sans-serif;
}
h1 {
text-align: center;
margin-top: 50px;
}
form {
margin: auto;
width: 50%;
text-align: center;
background-color: #FFFFFF;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
margin-top: 30px;
margin-bottom: 30px;
}
input[type=text] {
padding: 10px;
margin: 10px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
width: 100%;
}
button {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}
.delete-btn {
background-color: #f44336;
margin-left: 20px;
}
.delete-btn:hover {
background-color: #d32f2f;
}
.show-btn {
background-color: #008CBA;
margin-top: 20px;
margin-left: 20px;
padding: 10px 20px;
}
.show-btn:hover {
background-color: #007A8B;
}
</style>
</head>
<body>
<h1>ChatGPT APIKEY</h1>
<form>
<label for="input-field">APIKEY</label>
<input type="text" id="input-field">
<button id="save_option">Save</button>
<button id="delete_option" class="delete-btn">Delete</button>
<button id="show_option" class="show-btn">Show</button>
</form>
<script src="options.js"></script>
</body>
</html>