-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (61 loc) · 2.26 KB
/
Copy pathindex.html
File metadata and controls
74 lines (61 loc) · 2.26 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dev Log</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">
<h1>Dev Log</h1>
<div class="header-line"></div>
</header>
<div class="top-buttons">
<button class="top-btn" id="addBtn">New Log</button>
<button class="top-btn" id="galleryBtn">View All</button>
</div>
<div class="card-stack">
<div class="ghost-card"></div>
<div class="ghost-card"></div>
<div class="container"></div>
</div>
<nav class="nav">
<button class="nav-btn" id="prevBtn">←</button>
<div class="dots" id="dots"></div>
<button class="nav-btn" id="nextBtn">→</button>
</nav>
<div class="counter">
<span class="current" id="currentNum">01</span>
<span> / </span>
<span id="totalNum">02</span>
</div>
<div class="modal-overlay" id="modalOverlay">
<div class="modal">
<h2 class="modal-title">New Log Entry</h2>
<form id="entryForm">
<label for="formTitle" class="visually-hidden">Title</label>
<input type="text" id="formTitle" placeholder="Title" required>
<label for="formTags" class="visually-hidden">Tags</label>
<input type="text" id="formTags" placeholder="Tags (comma separated)">
<label for="formMood" class="visually-hidden">Mood emoji</label>
<input type="text" id="formMood" placeholder="Mood emoji" maxlength="2">
<label for="formContent" class="visually-hidden">Content</label>
<textarea id="formContent" placeholder="What did you learn or build today?" required></textarea>
<div class="modal-buttons">
<button type="button" class="btn-cancel" id="cancelBtn">Cancel</button>
<button type="submit" class="btn-save">Save</button>
</div>
</form>
</div>
</div>
<div class="gallery-overlay" id="galleryOverlay">
<div class="gallery-modal">
<h2 class="modal-title">All Logs</h2>
<div class="gallery-grid" id="galleryGrid"></div>
</div>
</div>
<footer class="footer-icon"><span class="footer-glow">A</span> <span class="footer-dim">‹/›</span> <span class="footer-glow">H</span></footer>
<script src="script.js"></script>
</body>
</html>