-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
56 lines (55 loc) · 1.7 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Danbooru Prompt Writing Assistant</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="container">
<div class="dark-mode-toggle">
<img
id="darkModeToggle"
src="assets/moon.png"
alt="Toggle Dark Mode"
style="cursor: pointer"
/>
</div>
<h1>Danbooru Prompt</h1>
<h2 style="font-size: smaller; font-weight: 500">Writing assistant</h2>
<div class="prompt-input">
<input
type="text"
id="tagInput"
placeholder="Enter a tag and press Enter or comma..."
/>
<div id="suggestions" class="suggestions"></div>
</div>
<div id="tagsContainer" class="tags-container"></div>
<div class="buttons">
<button id="copyPrompt">Copy Prompt</button>
<button id="savePrompt">Save Prompt</button>
<button id="clearTagsButton">Clear All Tags</button>
</div>
<div class="save-prompt-section">
<input type="text" id="promptName" placeholder="Prompt name" />
</div>
<div class="prompt-manager">
<h2>Saved Prompts</h2>
<ul id="savedPromptsList"></ul>
</div>
<div class="import-export-section">
<button id="exportPrompts">Export Prompts</button>
<button id="importPrompts">Import Prompts</button>
<input
type="file"
id="importFile"
accept="application/json"
style="display: none"
/>
</div>
</div>
<script src="./renderer.js"></script>
</body>
</html>