-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (97 loc) · 3.18 KB
/
index.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
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
<!-- referenced tutorial: https://www.youtube.com/watch?v=6eFwtaZf6zc -->
<!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>FocusPal To Do List</title>
<!-- CSS Import -->
<link rel="stylesheet" href="Todo-List.css" />
<link rel = "stylesheet" href="nav-bar/fp_homepg_navbar.css">
<!-- End of CSS Import -->
</head>
<body>
<div class="topnav">
<!-- Top header -->
<h1>
Welcome to Focus Pal!
<style>
</style>
</h1>
<!-- End of Top header -->
</div>
<div class="section-background"
id = 'section-background'>
</div>
<main class="app">
<!-- New Todo -->
<section class="create-todo">
<h3>Create a task</h3>
<form id="new-todo-form">
<label> Task:</label>
<input
type="text"
placeholder="e.g. Write paper"
name="content"
id="content" />
<label> Time to complete (m):</label>
<!--<input type="time" id="time1"> -->
<input type='number'
id="estimate"
name="estimate"
placeholder="e.g. 15"
min="1" max="60"
/>
<label> Category:</label>
<input type='text'
id="category"
name="category"
placeholder="e.g. Math"
/>
<input type="submit" value="Add" />
</form>
<!-- add another form to ask to add a category / figure out how to use inputted things to add to existing drop downs-->
</section>
</section>
<!-- End of New Todo -->
<!-- Todo List -->
<section class="todo-list">
<h3>List of tasks</h3>
<!-- h3 is the size not number of headers -->
<div class="list" id="todo-list"></div>
<!-- Notification-->
<!--
<section class="notification">
<div class="notice-background">
<h6>Notice! You are scheduled to
be working on Essay for the
next hour</h6>
</div>
<div class="notice-text">
<h6>Notice! You are scheduled to
be working on Essay for the
next hour</h6>
</div>
</section>
-->
<!-- End of Notification-->
</main>
<!-- End of App Wrapper -->
<!-- nav bar -->
<div class="side-nav">
<a href="#" class="logo">
<img src="../nav-bar/Focus Pal Logo.png" class="logo-img">
<img src="../nav-bar/Focus Pal Logo.png" class="logo-icon">
</a>
<ul class="nav-links">
<li><a href="Event-Calendar/cal.html"><p>Calendar</p></a></li>
<li><a href="Notes/notes.html"><p>Task Studying</p></a></li>
<div class="active"></div>
</ul>
</div>
<!-- JS Import -->
<script src="Todo-List.js"></script>
<!-- End of JS Import -->
</body>
</html>