-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
33 lines (28 loc) · 1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Note Keeper</title>
<link rel="stylesheet" href="popup.css">
</head>
<body>
<h2>Note Keeper</h2>
<div>
<h4>Available Tags:</h4>
<div id="availableTags"></div>
</div>
<button id="addNoteButton">+ Add Note</button>
<!-- Form for adding/editing notes -->
<div id="noteForm" style="display: none;">
<input type="text" id="urlInput" placeholder="Enter URL (optional)">
<input type="text" id="titleInput" placeholder="Enter Title">
<textarea id="noteInput" placeholder="Enter your note" maxlength="1000"></textarea>
<input type="text" id="tagInput" placeholder="Enter tags (comma-separated)">
<button id="saveNoteButton">Save Note</button>
</div>
<!-- Container for displaying notes -->
<div id="notesContainer"></div>
<script src="popup.js"></script>
</body>
</html>