-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (61 loc) · 2.28 KB
/
index.html
File metadata and controls
64 lines (61 loc) · 2.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css"></link>
<title>TODO-LIST</title>
</head>
<body>
<div id="header-box">
<div class="clock-box">
<h1></h1>
</div>
<div class="weather-box">
<span></span>
<span></span>
</div>
</div>
<section>
<div class="form-box">
<div class="form-container">
<div class="form-value">
<form action="">
<h2>Login</h2>
<div class="inputbox">
<input type="text" id="loginId" required autocomplete="off" max="8"/>
<label for="loginId">name</label>
</div>
<button id="loginBtn">Log in</button>
</form>
</div>
</div>
</div>
<form>
<div class="todo-box">
<h1>Todo List</h1>
<div class="input-container">
<input id="todoText" class="todo-input" placeholder="오늘 할 일" required>
<div class="button-box">
<button class="add-button">+</button>
</div>
</div>
<div class="filters">
<div style="display: flex;">
<div id="completeBtn" class="filter">완료</div>
<div id="incompleteBtn" class="filter">진행중</div>
</div>
<div id="deleteAllBtn" class="delete-all">전체삭제</div>
</div>
<div class="todos-container">
<ul class="todos">
</ul>
</div>
<button id="logoutBtn">Log Out</button>
</div>
</form>
</section>
<script src="app.js"></script>
<script src="clock.js"></script>
</body>
</html>