-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage.html
79 lines (66 loc) · 2.36 KB
/
homepage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="./dist/main.css" rel="stylesheet">
<script type="text/javascript" src="js/xhr.js"></script>
<title>Document</title>
</head>
<body>
<nav>
<div>
<h1>To Do List Management!</h1>
</div>
</nav>
<div class="main-container">
<div>
<h3> Todo List: </h3>
<ul id="todo-list">
<!-- <li>
<input type="checkbox">
<label>test</label>
<button class="view"> View </button>
<button class="delete"> Delete </button>
</li>
<div id="detail-view-div">
<p> Title: <label></label></p>
<p> Description: <label></label></p>
<p> Date: </p>
<p> Time: </p>
<p> Status: </p>
</div> -->
</ul>
</div>
<div>
<h3> Complete List: </h3>
<ul id="complete-list">
<!-- <li>
<input type="checkbox">
<label>test</label>
<button> View </button>
<button> Delete </button>
</li> -->
</ul>
</div>
<button class="add-new-button-main" id= "add-new-btn"> + ADD NEW TO-DO </button>
</div>
<div id="add-new" class="addnew-container main-container">
<div class="grid-header">
<h3> New To-do list: </h3>
</div>
<div>
<form class="form">
<input class="input" id="title-input" required="true" type="text" placeholder="Title"> <br />
<input class="input" id="description-input" required="true" type="text" placeholder="Description"> <br />
<input class="input" id="date-input" required="true" type="date"><br />
<input class="input" id="time-input" required type="time"><br />
<div>
<button id="add-btn" type= "submit">Add</button>
<button id="reset-btn" type = "reset">Reset</button>
</div>
</form>
</div>
</div>
</body>
</html>