forked from avinash201199/To-Do-List
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
125 lines (108 loc) · 5.14 KB
/
index.html
File metadata and controls
125 lines (108 loc) · 5.14 KB
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
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" /> -->
<title>To-Do List</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0,user-scalable=no">
<!-- favicon -->
<link rel="shortcut icon" type="image/jpg" href="assets/images/favicon.png" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css"
integrity="sha256-mmgLkCYLUQbXn0B1SRqzHar6dCnv9oZFPEC1g1cwlkk=" crossorigin="anonymous" />
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/style.css" />
<h1 style="margin: auto">To-Do List</h1>
<input type="checkbox" id="switch" onchange="switchToDarkMode()"/><label for="switch"></label>
</head>
<body>
<header>
<div class="header"><b><h1>To-Do List</h1></b></div>
</header>
<div class="modal red" id="Modal">
<div class="content" id="content">
<span id="modal-text">
Some Text
</span>
<button onclick="closemodal()" class="modal-btn"><i class="fas fa-times"></i></button>
</div>
</div>
<span class="todayDate"><span id="d2"></span></span>
<span class="todayDate">Current Time: <span id="d1"></span></span>
<!-- Trigger/Open The Modal -->
<div class="buttons-wrapper">
<div class="button-div"><button id="myBtn" class="myBtn">Add a new task</button></div>
<div class="select">
<select name="todos" class="filter-todo " style="color:black;">
<option value="all" style="color:black;">All</option>
<option value="completed" style="color:black;">Completed</option>
<option value="incomplete" style="color:black;">Incomplete</option>
</select>
</div>
</div>
<!-- The Modal -->
<div id="myModal" class="modal-new">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<form class="todoform">
<div class="input-group mb-3">
<input type="text" placeholder="Add a new Task .." class="todo-input form-control" id="textInput"
required />
<div class="abc">
<button id="todo-button" class="todo-button" type="submit">
<i class="fas fa-plus-square"></i>
</button>
</div>
</div>
</form>
</div>
</div>
<div class="no-to-do-item">
<h1>The List Is Empty</h1>
</div>
<div class="todo-container">
<ul class="todo-list"></ul>
</div>
<button class="delete-all" onclick="show_alert()">Delete All Tasks</button>
<!-- <div cla ss="confirmation_box"></div> -->
<div class="confirmation_box hide " id="confirmation_box">
<div class="confirmation_box_inner">
<div class="optbox_header">
<i class="fas fa-times" onclick="goback()"></i>
</div>
<p>Are you sure you want to delete all tasks?</p>
<div class="option_box">
<div class="proceed" onclick="deleteAll();">Yes</div>
<div class="donot_proceed" onclick="goback()">No</div>
</div>
</div>
</div>
<!-- footer -->
<footer class="footer">
<div class="social-media">
<!-- instagram -->
<a class="link" href="https://www.instagram.com/lets__code/" target="_blank" rel="noopener noreferrer"><img
class="social-icon" src="assets/images/instagram.svg" alt="instagram" /></a>
<!-- linkedin -->
<a class="link" href="https://www.linkedin.com/in/avinash-singh-071b79175/" target="_blank"
rel="noopener noreferrer"><img class="social-icon" src="assets/images/linkedin.svg"
alt="linkedin" /></a>
<!-- gmail -->
<a class="link" href="mailto: avinash201199@gmail.com" target="_blank" rel="noopener noreferrer"><img
class="social-icon" src="assets/images/gmail.svg" alt="gmail" /></a>
<!-- github -->
<a class="link" href="https://github.com/avinash201199" target="_blank" rel="noopener noreferrer"><img
class="social-icon" src="assets/images/github.svg" alt="Github" /></a>
</div>
<div class="2ndrow-foter">
<p class="footer-desc">This project is a part of <a class="footer-desc"
href="https://hacktoberfest.digitalocean.com/" target="_blank" rel="noopener noreferrer">Hacktoberfest
2022</a>
</p></div>
<div class="3rd-row-footer"><h3>Made with <i class="fas fa-heart fa-heart-custom"></i> by Avinash</h3></div>
</footer>
<script src="assets/js/app.js"></script>
</body>
</html>