-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
36 lines (36 loc) · 1.16 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
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<title>Prompt Manager</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div id="app">
<h1>Prompt Manager</h1>
<div id="input-area">
<textarea id="prompt-input" placeholder="Enter a new prompt (Markdown supported)"></textarea>
<button id="save-prompt">Save</button>
</div>
<div id="import-export-area">
<button id="export-prompts">Export Prompts</button>
<input type="file" id="import-file" accept=".json" style="display: none;">
<button id="import-prompts">Import Prompts</button>
</div>
<div id="search-sort-area">
<div class="icon-input-wrapper">
<span class="icon search-icon">🔍</span>
<input type="text" id="search-input" placeholder="Search prompts">
</div>
<div class="icon-select-wrapper">
<span class="icon sort-icon">▼</span>
<select id="sort-select">
<option value="time">Sort by Time</option>
<option value="custom">Custom Sort</option>
</select>
</div>
</div>
<ul id="prompt-list"></ul>
</div>
<script src="popup.js"></script>
</body>
</html>