-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtodo.html
85 lines (69 loc) · 2.07 KB
/
todo.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- main css -->
<link rel="stylesheet" href="styles/main.css">
<!-- font awesome -->
<link rel="stylesheet" href="styles/all.css">
<title>TODO LIST</title>
<style>
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col mx-auto col-md-9 mt-3 text-center">
<div class="alert feedback">
write value for item
</div>
<!-- form -->
<form class="" id="itemForm">
<button class="logout">
<span>
Logout
</span>
</button>
<h3 class="todoList mb-4 font">to do list</h3>
<div class="flex">
<div class=" input-group">
<div class="input-group-append">
<button type="button" class="btn btn-warning " >Daily</button>
</div>
<div class="input-group-append">
<button type="button" class="btn btn-warning " >Weekly</button>
</div>
<div class="input-group-append">
<button type="button" class="btn btn-warning " >Monthly</button>
</div>
</div>
</div>
<div class="flex">
<div class="input-group">
<input type="text" class="form-control" id="itemInput" placeholder="name...">
<input type="date" class="form-control" id="itemtime">
</div>
<div class="flex margin">
<div class="input-group-append">
<button class="btn btn-add" type="submit">add item</button>
</div>
<div class="input-group-append">
<button type="button" class="btn btn-clear" id="clear-list">clear items</button>
</div>
</div>
</div>
</form>
<div class="item-container">
<!-- end of form -->
<div class="item-list my-5">
</div>
</div>
</div>
</div>
</div>
<!-- script js -->
<script src="js/app.js"></script>
</body>
</html>