-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
30 lines (29 loc) · 882 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Settings</title>
<link rel="stylesheet" href="popup.css">
</head>
<body>
<h1>Settings</h1>
<div>
<label >Gomoon Use Gpt4 Model</label>
<a href="http://gomoon.pro" target="_blank" class="website-link">Open our website get Activation Key</a>
</div>
<form id="settingsForm">
<div>
<label for="activationKey">Activation Key (Free Key `gomoon`):</label>
<input type="password" id="activationKey" required>
</div>
<div>
<label for="gptRole">GPT Role:</label>
<select id="gptRole" required>
<!-- Additional options can be added here -->
</select>
</div>
<button type="submit">Save</button>
</form>
<script src="popup.js"></script>
</body>
</html>