-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
54 lines (53 loc) · 1.88 KB
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css"/>
<title>ToDo App</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
width: max-content;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
li {
height: fit-content;
}
li:hover {
cursor: pointer;
}
</style>
</head>
<body>
<div class="text-center">
<h1>ToDo List</h1>
<p>Made By
<a href="https://codingwithrk.com" target="_blank" class="fw-bold text-decoration-none text-dark">CodingwithRK</a>
</p>
</div>
<div class="input-group mb-3">
<input type="text" class="form-control border-primary" id="taskInput" aria-label="taskInput" placeholder="Enter new task"/>
<button id="addTaskButton" class="btn btn-outline-primary">
<i class="bi bi-plus-circle"></i>
</button>
</div>
<ul id="taskList" class="list-group"></ul>
<div class="text-center my-3">
<h6>If any issue found</h6>
<p class="mb-0">
<a href="mailto:[email protected]" target="_blank" class="fw-bold text-decoration-none text-dark me-3">Mail us</a>
(or)
<a href="https://github.com/CodingwithRK/Todo-chrome-extension/discussions" target="_blank" class="fw-bold text-decoration-none text-dark ms-3">
Let's Discuss
</a>
</p>
</div>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/popup.js"></script>
</body>
</html>