-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
146 lines (127 loc) · 6.62 KB
/
index.html
File metadata and controls
146 lines (127 loc) · 6.62 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dashboard</title>
<link rel="stylesheet" href="style/style.css">
</head>
<body>
<div id="background">
<div class="container">
<header class="header">
<div class="header-content-wrapper">
<h1 class="welcome-text">Welcome dear Fatemeh!</h1>
</div>
</header>
<main>
<div class="setting-row">
<img src="assets/images/gear.svg" alt="">
<img src="assets/images/person.svg" alt="">
</div>
<div class="google-search-row">
<div class="google-search">
<input type="text" placeholder="Google Search">
</div>
</div>
<div class="main-content">
<div class="left-column">
<div class="card-container">
<h2>Monthly Goals</h2>
<div id="goals-list">
</div>
<div class="add-goal">
<input type="text" id="goal-input" placeholder="Add new goal">
<button id="addGoalBtn" title="Add goal">
<img src="assets/images/plus.svg" alt="plus">
</button>
</div>
</div>
<div class="card-container note">
<h2>Notes</h2>
<textarea id="note-area" placeholder="Write your thoughts here..."></textarea>
</div>
<div class="card-container">
<h2>Habit Tracker</h2>
<div id="habits-list">
</div>
<div class="add-habit">
<input type="text" id="habit-input" placeholder="Add new habit">
<button id="addHabitBtn" title="Add habit">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round"
stroke-linejoin="round">
<line x1="12" y1="5" x2="12" y2="19" />
<line x1="5" y1="12" x2="19" y2="12" />
</svg>
</button>
</div>
</div>
</div>
<div class="center-column">
<div class="card-container">
<h2>Bookmarks</h2>
<div id="bookmarks" class="bookmark-grid">
</div>
<div class="add-bookmark">
<input type="text" id="bookmark-input" placeholder="Enter URL or name">
<button id="addBookmarkBtn" title="Add bookmark">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round"
stroke-linejoin="round">
<line x1="12" y1="5" x2="12" y2="19" />
<line x1="5" y1="12" x2="19" y2="12" />
</svg>
</button>
</div>
</div>
<div class="card-container">
<h2>Vision board</h2>
<div id="visionGrid" class="vision-grid">
<button id="addVisionBtn" class="vision-add-tile">+</button>
</div>
<div id="visionModal" class="vision-modal">
<div class="vision-modal-content">
<h3>Add to Vision Board</h3>
<div class="vision-input-group">
<label for="visionUrl">Image URL</label>
<input type="text" id="visionUrl" placeholder="https://example.com/image.jpg" />
</div>
<div class="vision-input-group">
<label for="visionUpload">or Upload Image</label>
<input type="file" id="visionUpload" accept="image/*" />
</div>
<div class="vision-modal-actions">
<button id="saveVisionBtn" class="btn-primary">Add</button>
<button id="closeVisionBtn" class="btn-secondary">Cancel</button>
</div>
</div>
</div>
</div>
</div>
<div class="right-column">
<div class="card-container">
<div id="clock">
<span id="hours">--</span>:
<span id="minutes">--</span>:
<span id="seconds">--</span>
</div>
</div>
<div class="card-container">
<h2>Calendar</h2>
<button id="loginBtn" class="google-login-btn">Login with Google</button>
<div id="publicCalendar" style="display:block;">
<iframe
src="https://calendar.google.com/calendar/embed?src=en.usa%23holiday%40group.v.calendar.google.com&mode=AGENDA"
style="border:0;width:100%;height:200px" scrolling="no">
</iframe>
</div>
<div id="userCalendar" style="display:none;">
</div>
</div>
</div>
</div>
</main>
</div>
</div>
<script src="script.js" type="text/javascript"></script>
</body>
</html>