-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplanner.html
More file actions
91 lines (79 loc) · 3.49 KB
/
planner.html
File metadata and controls
91 lines (79 loc) · 3.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Planner</title>
<link href="css/planner.css" rel="stylesheet">
<link href="css/header.css" rel="stylesheet">
<link href="css/footer.css" rel="stylesheet">
</head>
<body>
<div class="header">
<img src="images/project_logo.png">
<a href="dashboard.html"><button>Goalify</button></a>
<a href="dashboard.html"><button>Dashboard</button></a>
<a href="planner.html"><button>Planner</button></a>
<a href="index.html" class="login-button"><button>Log Out</button></a>
<!--<a href="#"><li>Settings</li></a>-->
<!--<a href="#"><li>Log In</li></a>-->
</div>
<div class="planner-box">
<div class="tasks">
<h1>Tasks</h1>
<div class="separator"></div>
<p>Your Tasks</p>
<div class="to-dos">
<input id="item1" type="checkbox">
<label class="item" for="item1">Create a to-do list (JavaScript)</label>
<input id="item2" type="checkbox" checked>
<label class="item" for="item2">Make A Website</label>
<input id="item3" type="checkbox">
<label class="item" for="item3">Pass WDT Assignments</label>
<input id="item4" type="checkbox">
<label class="item" for="item4">Study for exams</label>
</div>
<a href="task-form.html">
<div class="new">
<h2>Add New Task</h2>
</div>
</a>
</div>
<div class="goals">
<h1>Goals</h1>
<div class="separator"></div>
<p>Your Goals</p>
<div class="goals-list">
<ul>
<li><div class="dl-item"><p>Goal 1</p><p>Category 1</p></div></li>
<li><div class="dl-item"><p>Goal 2</p><p>Category 2</p></div></li>
<li><div class="dl-item"><p>Goal 3</p><p>Category 3</p></div></li>
</ul>
</div>
<a href="goal-form.html">
<div class="new">
<h2>Add New Goal</h2>
</div>
</a>
</div>
</div>
<div class="footer">
<div class="coloumns">
<a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ" class="link_footer"><p>About us</p></a>
<a href="https://www.youtube.com/watch?v=TuQC5hhhqkY" class="link_footer"><p>Contact</p></a>
<a href="https://www.youtube.com/watch?v=0Kvw2BPKjz0" class="link_footer"><p>Terms of service</p></a>
<a href="https://www.youtube.com/watch?v=z_AgCzt9zcM" class="link_footer"><p>Privacy Policy</p></a>
</div>
<div class="social-media">
<a href="https://www.facebook.com/"><img src="./images/facebook_logo.png"></a>
<a href="https://www.instagram.com/"><img src="./images/inta_logo.png"></a>
<a href="https:/twitter.com/"><img src="./images/twitter_logo.png"></a>
<a href="https://www.linkedin.com/"><img src="./images/linkedin_logo.png"></a>
</div>
<div>
<p class="link_footer">Copyright © 2023. All rights reserved </p>
</div>
</div>
</body>
</html>