-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (53 loc) · 1.9 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
<!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>Todo Apps</title>
<link rel="icon" href="assets/to-do-list.png" type="image/x-icon">
<link rel="shortcut icon" href="assets/to-do-list.png" type="image/x-icon">
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<header>
<h1>Todo List</h1>
</header>
<div class="wrapper">
<div id="alert-container" class="fade-out"></div>
<div class="container bg-white shadow" id="add-todo">
<h2 class="container-header text-center">
Tambah yang harus dilakukan
</h2>
<form class="form" action="#" id="form">
<div class="form-group form-title">
<label for="title">Masukkan hal yang akan dilakukan</label>
<input type="text" id="title" name="title" required />
</div>
<div class="form-group form-title">
<label for="date">Masukkan tanggal harus selesai</label>
<input type="date" id="date" name="date" required />
</div>
<input
type="submit"
value="Submit"
name="Submit"
class="btn-submit"
/>
</form>
</div>
<div class="container">
<h2 class="container-header">Yang harus dilakukan</h2>
<div class="list-item" id="todos"></div>
</div>
<div class="container">
<h2 class="container-header">Yang sudah dilakukan</h2>
<div class="list-item" id="completed-todos"></div>
</div>
</div>
<footer>
<p>Copyright © 2024 - All Rights Reserved by <a href="https://github.com/SideeID" target="_blank" >Side ID</a></p>
</footer>
<script src="js/script.js" type="text/javascript"></script>
</body>
</html>