-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
90 lines (69 loc) · 2.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TodoList From Js</title>
<link rel="stylesheet" href="./Css/normalize.css">
<link rel="stylesheet" href="./Css/style.css">
<link rel="stylesheet" href="./Css/medias.css">
<link rel="stylesheet" href="./Css/modal.css">
<link rel="stylesheet" href="./node_modules/bootstrap-icons/font/bootstrap-icons.css">
</head>
<body>
<div class="container-todolist">
<aside class="parent-sidebar-left">
<section>
<header class="parent-sidebar-left__header">
<i class="bi bi-clipboard-data parent-sidebar-left__icon"></i>
<h2 class="parent-sidebar-left__title">To-Do List</h2>
</header>
<p class="parent-sidebar-left__list">My Lists</p>
<ul class="parent-sidebar-left__lists" id="parentMyList">
<!-- Data Loaded From JS -->
</ul>
<section class="parent-sidebar-left__container-newlist">
<div class="parent-sidebar-left__parent-newlist" id="addNewList">
<i class="bi bi-plus"></i>
<p class="parent-sidebar-left__newlist">New List</p>
</div>
</section>
</section>
</aside>
<section class="parent-todolist">
<div class="parent-todolist__header">
<div class="parent-todolist__header-right">
<h1 class="title-main">Good ...</h1>
<h2 class="sub-title-main">what's your plan for <span class="determine-status">to...</span>?</h2>
</div>
<div class="parent-todolist__header-left">
<h3 class="month"></h3>
<p class="today"></p>
</div>
</div>
<form class="parent-todolist__form">
<div class="parent-todolist__parent-inp">
<input type="text" placeholder="Add Your Task" autocomplete="off" autofocus="on" id="inputNewTodo">
<button id="addTodoBtn">Add Todo</button>
</div>
</form>
<section id="parentTodos">
<!-- Datas Todo Loaded from the app.js -->
</section>
</section>
<aside class="parent-sidebar-right">
</aside>
</div>
<div class="modal modal-hide" id="parentModal">
<div class="wrapper-box-modal">
<div>
<i class="bi bi-x" id="btnCloseModal"></i>
</div>
<p>please enter <span>new list</span> name</p>
<input type="text" placeholder="list name" id="inpNewListName" autocomplete="off">
<button id="btnSetNewNameList">set new name</button>
</div>
</div>
<script src="./Js/app.js" type="module"></script>
</body>
</html>