-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
58 lines (55 loc) · 2.8 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>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="main.css">
<link rel="icon" href="logo.png" type="image/x-icon">
<!-- Bootstrap4 CSS CDN -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- included Font Awesome CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<!-- included sweetalert2 CDNs -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/sweetalert2.all.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/sweetalert2.min.css">
<!-- Bootstrap-Cookie-Alert -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/Wruczek/Bootstrap-Cookie-Alert@gh-pages/cookiealert.css">
<title>To-Do List</title>
</head>
<body>
<div class="header">
<h3 style="margin-bottom:10px">Hello, <u onclick="updatename()" id="username" style="cursor: pointer;">Guest</u></h3>
<!-- <button class="btn btn-danger" onclick="deleteAllCookies()">Delete User</button>
<button class="btn btn-warning" onclick="updatename()">Update User</button> -->
<h2 style="margin:10px">To-Do List</h2>
<input type="text" id="writespace" placeholder="Write down a task to do...">
<button class="addBtn" id="btn">Add</button>
</div>
<ul id="list">
<!-- <li class="checked">Attend online classes</li>
<li>Practice the codes</li>
<li>Complete all pending assignments</li> -->
</ul>
<center>
<button type="button" id="clear-list" onclick="removeAllTasks()">Clear List</button>
</center>
<div class="push"></div>
<footer id="foot">
<center>
© <a href="https://github.com/SamarjeetBanik">Samarjeet</a> | <a href="https://github.com/MadhabaPatra">Madhaba</a> | <a href="https://github.com/SamarjeetBanik/to-do-list"><i class="fab fa-github"></i></a> | 2020
</center>
</footer>
<div class="alert text-center cookiealert" role="alert">
<b>Do you like cookies?</b> 🍪 We use cookies to ensure you get the best experience on our website. <a href="https://cookiesandyou.com/" target="_blank">Learn more</a>
<button type="button" class="btn btn-primary btn-sm acceptcookies">
I agree
</button>
</div>
<script src="https://cdn.jsdelivr.net/gh/Wruczek/Bootstrap-Cookie-Alert@gh-pages/cookiealert.js"></script>
<script type="text/javascript" src="script.js"></script>
<script type="text/javascript" src="cookies.js"></script>
<script>
loadname()
</script>
</body>
</html>