-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
115 lines (108 loc) · 5.08 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!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">
<title>TODO List app</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<link rel="stylesheet" href="index.css">
</head>
<body>
<section class="hero is-primary mb-5">
<div class="hero-body has-text-centered">
<div class="container">
<h1 class="title">
TODO List Prend
</h1>
<h2 class="subtitle">
Iki description
</h2>
</div>
</div>
</section>
<div class="container my-container">
<div class="columns is-three-quarters-mobile">
<div class="column is-half is-offset-one-quarter">
<!-- Buat Tugas Baru -->
<form id="form-todo" class="card mb-3">
<header class="card-header has-background-info">
<p class="card-header-title has-text-white">
Buat Tugas Baru
</p>
<a href="#" class="card-header-icon" aria-label="more options">
<span class="icon">
<i class="fas fa-angle-down" aria-hidden="true"></i>
</span>
</a>
</header>
<div class="card-content">
<div class="content">
<div class="field">
<label class="label">Tugas</label>
<div class="control">
<input type="text" name="todo" maxlength="100" class="input" placeholder="Tuliskan tugas yg bukan wacana belaka....">
</div>
</div>
</div>
</div>
<div class="card-footer">
<button type="submit" class="button is-fullwidth">Save</button>
</div>
</form>
<!-- Daftar Tugas -->
<div class="card mb-3">
<header class="card-header">
<p class="card-header-title">
(<span class="todoCounter">99</span>) Tugas Hari ini
</p>
<!-- <a href="#" id="sort-action" class="card-header-icon">
Sort: ASC
</a> -->
</header>
<div class="card-content is-paddingless">
<div class="content">
<div id="todo-container" class="list is-hoverable">
<!-- <div id="todo-empty" class="list-item is-hidden has-text-centered has-text-grey">
Gak onok opo-opo
</div> -->
<!-- <div class="list-item has-background-success has-text-white"> -->
<!-- <div data-id ="0" class="todo-item list-item is-clearfix">
<div class="todo-status is-pulled-left">
<label class="checkbox">
<input type="checkbox">
</label>
</div>
<div class="todo-content is-pulled-left">
Pergi Ngopi dulu prend
</div>
<div class="todo-action is-pulled-right has-text-right">
<a href="#" class="todo-delete button is-small is-danger">Delete</a>
</div>
</div> -->
</div>
</div>
</div>
<div class="card-footer">
<a href="#" id="complete-all" class="card-footer-item has-text-success">Mark All Complete</a>
<a href="#" id="remove-all" class="card-footer-item has-text-danger">Remove All</a>
</div>
</div>
</div>
</div>
</div>
<footer class="footer" style="margin-top: 30px;">
<div class="content has-text-centered">
<p>
<strong>Todo List App in Vanilla JS</strong> by <a href="https://antoniputra.com">Antoni Putra</a>. <br>
♥ Made better by <b>You</b>.
</p>
<p>
© Copyright 2020 - The source code is licensed
<a href="http://opensource.org/licenses/mit-license.php">MIT</a>.
</p>
</div>
</footer>
<script src="index.js"></script>
</body>
</html>