-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
30 lines (30 loc) · 1.04 KB
/
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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ChatGPT Session Manager</title>
<link rel="stylesheet" href="style.css">
</head>
<body class="dark-mode">
<div class="container">
<h1>ChatGPT Session Manager</h1>
<div id="api-key-container" style="display: none;">
<label for="api-key-input">Enter your API key:</label>
<input type="text" id="api-key-input">
<button id="api-key-submit">Submit API Key</button>
<p id="error-message" style="display: none;"></p>
</div>
<div id="content" style="display: none;">
<label for="name-input">Enter your name:</label>
<input type="text" id="name-input">
<button id="add-btn">Add Name</button>
<button id="remove-btn" disabled="true">Remove Name</button>
<h2 id="current-name">Current Name: <span></span></h2>
<h2>Users:</h2>
<ul id="user-list"></ul>
</div>
</div>
<script type="module" src="./popup.js"></script>
</body>
</html>