-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (48 loc) · 2.38 KB
/
Copy pathindex.html
File metadata and controls
56 lines (48 loc) · 2.38 KB
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.0">
<title>Web Reminder</title>
<link rel="stylesheet" href="dist/tailwind.css">
<!-- <link href="css/all.css" rel="stylesheet"> Include FontAwesome for icons if necessary -->
</head>
<body class="bg-gray-100 min-h-screen flex items-center justify-center p-4">
<!-- Main Container -->
<div class="container mx-auto max-w-lg bg-white rounded-lg shadow-2xl p-6">
<!-- Heading -->
<h1 class="text-3xl font-extrabold text-primary mb-6 flex items-center justify-center">
<i class="fas fa-bell mr-3"></i> Web Reminder
</h1>
<!-- Input Section -->
<div class="bg-white rounded-lg p-4 border border-gray-200 shadow-inner">
<!-- Note Input -->
<input type="text" id="note-input" placeholder="Enter a note or URL"
class="w-full mb-4 p-3 border border-gray-300 rounded focus:outline-none focus:ring focus:ring-primary placeholder-gray-500">
<!-- Buttons Section -->
<div class="flex space-x-3 mb-4">
<button id="save-note" class="primary-btn flex items-center justify-center w-1/2">
<i class="fas fa-sticky-note mr-2"></i> Save Note
</button>
<button id="save-link" class="primary-btn flex items-center justify-center w-1/2">
<i class="fas fa-globe mr-2"></i> Save Current Page
</button>
</div>
<!-- Date-Time Picker for Reminder -->
<input type="datetime-local" id="reminder-time"
class="w-full mb-4 p-3 border border-gray-300 rounded focus:outline-none focus:ring focus:ring-primary">
<!-- Set Reminder Button -->
<button id="set-reminder" class="primary-btn w-full flex items-center justify-center">
<i class="far fa-clock mr-2"></i> Set Reminder
</button>
</div>
<!-- Saved Items Section -->
<div id="saved-items">
<!-- Display saved notes or links here -->
<p id="no-items-message">No items saved yet. Your saved notes and reminders will appear here.</p>
</div>
</div>
<script src="./script.js"></script>
<script src="./popup.js"></script>
</body>
</html>