-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.ejs
34 lines (29 loc) · 962 Bytes
/
list.ejs
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>TODO LIST</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div class="box" id="heading">
<h1> <%=kindofday%> </h1>
</div>
<div class="box">
<% numberofitems.forEach(function(items){ %>
<form action="/delete" method="post">
<div class="item">
<input type="checkbox" name="ischecked" value="<%=items._id%>" onChange="this.form.submit()">
<p><%= items.name %></p>
</div>
<input type="hidden" name="listname" value="<%=kindofday%>">
</form>
<% }) %>
<form action="/" method="post" class="item">
<input type="text" name="newItem" placeholder="New Item" autocomplete="off">
<button type="submit" name="listitem" value=<%= kindofday %>>+</button>
</form>
</div>
<footer>Copyright 2021 By Nimesh Bansal</footer>
</body>
</html>