-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.html
executable file
·82 lines (73 loc) · 3.38 KB
/
app.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.css">
<!-- App CSS-->
<link rel="stylesheet" href="css/app.css">
<!-- Font CSS -->
<link rel="stylesheet" href="css/font.css">
<!-- Favicon-->
<link rel="shortcut icon" href="images/bloc-logo.png">
<title>Bloc</title>
</head>
<body style="background: #BCE0FD">
<div class="card-container my-5 border-left-0">
<div class="icon-circle">
<img class="px-2 py-2" src="images/add-list.png" alt="icon">
</div>
<h2 class="bloc text-white"><strong>BLOC</strong></h1>
<p id="taskCount" class="task-count text-white">0 Task</p>
<div class="task-card">
<!-- Floating Action Button -->
<button id="fab" class="fab float-right" data-toggle="modal" data-target="#add-task-container">
<img clas="m-auto" src="images/plus.png" alt="" height="16" width="16">
</button>
<!-- #Floating Action Button -->
<!-- Task List-->
<ul id="list" class="list-group mt-3">
<!-- Items-->
<!-- <li id="item-1" class="list-group-item border-0 d-flex justify-content-between align-items-center"
ondblclick="removeTask(this.id);">
Exercise
<input id="item-1-checkbox" type="checkbox" onclick="changeTaskStatus(this.id);">
</li> -->
<!-- #Items-->
</ul>
<!-- #Task List-->
<!-- Add Task Modal -->
<div id="add-task-container" tabindex="-1" class="modal add-task-container">
<form id="add-task-form" class="needs-validation" novalidate>
<div class="container">
<div class="col mx-2">
<h5 class="text-primary text-center mt-4">New Task</h5>
<input id="new-task" class="mt-3 form-control text-center" type="text"
placeholder="Task" maxlength="15" autofocus required>
<div class="invalid-feedback">
Cannot have a empty task
</div>
<button type="submit" data-dismiss="modal" class="btn btn-primary btn-block mt-3"
onclick="addTask(document.getElementById('new-task').value);">Add
Task</button>
</div>
</div>
</form>
</div>
<!-- #Add Task Modal -->
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="js/jquery-3.5.1.slim.js"></script>
<script src="js/popper.js"></script>
<script src="js/bootstrap.js"></script>
<!-- App and related files JS-->
<script src="js/web3.js"></script>
<script src="js/config.js"></script>
<script src="js/getAccount.js"></script>
<script src="js/app.js"></script>
</body>
</html>