-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (79 loc) · 4.41 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
<!doctype html>
<html><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>TO-DO List</title>
<meta name="description" content="None">
<meta name="author" content="">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/styles.css">
<meta name="theme-color" content="#2F3BA2">
<link rel="manifest" href="Manifest.json">
<!--Bootstrap Scripts-->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script>
if('serviceWorker' in navigator) {
navigator.serviceWorker.register('./sw.js')
.then(function() {
console.log('Service Worker Registered');
});
}
</script>
<script src="assets/js/app.js"></script>
</head><body>
<header data-type="header" class="header-w-search">
<div class="overlay">
</div>
<div class="container h-100">
<div class="d-flex text-center h-100">
<div class="my-auto w-100 text-white">
<h2 data-type="header" class="display-4">TO-DO List</h2>
<div class="input-group mb-3 mt-3 w-75 mx-auto"><input type="text" placeholder="Task Name" id="task" aria-label="task" aria-describedby="task" class="form-control form-control-lg" />
<div class="input-group-append"><button type="button" onClick="addTask()" id="addtask" class="btn btn-success btn-lg">Add to List</button></div>
</div>
</div>
</div>
</div>
</header>
<div class="container py-5">
<div class="card">
<!-- Card header -->
<div class="card-header">
<!-- Title -->
<h5 data-type="header" class="h3 mb-0">To-do list</h5>
</div><!-- Card body -->
<div class="card-body p-0">
<!-- List group -->
<ul data-toggle="checklist" class="list-group list-group-flush todo-list">
<li class="checklist-entry list-group-item flex-column align-items-start py-4 px-4">
<div class="checklist-item checklist-item-info">
<div class="checklist-info">
<h5 data-type="header" class="checklist-title mb-0">Micro SaaS Launch</h5>
</div>
<div>
<div class="custom-control custom-checkbox custom-checkbox-info"><input id="chk-todo-task-1" type="checkbox" class="custom-control-input" /><label for="chk-todo-task-1"
class="custom-control-label"></label></div>
</div>
</div>
</li>
<li class="checklist-entry list-group-item flex-column align-items-start py-4 px-4">
<div class="checklist-item checklist-item-danger checklist-item-checked">
<div class="checklist-info">
<h5 data-type="header" class="checklist-title mb-0">Python Hackaton</h5>
</div>
<div>
<div class="custom-control custom-checkbox custom-checkbox-danger"><input id="chk-todo-task-2" type="checkbox" checked="" class="custom-control-input" /><label for="chk-todo-task-2"
class="custom-control-label"></label></div>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</body>
</html>