-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.ejs
29 lines (26 loc) · 983 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
<%- include('header') -%>
<div class="box" id="heading">
<h1>
<%=listTitle%>
</h1>
</div>
<div class="box">
<ul>
<% newItems.forEach(function(item){ %>
<form action="/delete" method="POST">
<div class="item">
<input type="checkbox" name="checkbox" value="<%=item._id%>" onChange="this.form.submit()">
<p>
<%=item.name%>
</p>
</div>
<input type="hidden" name="listName" value="<%= listTitle %>">
</form>
<% }) %>
</ul>
<form action="/" method="POST" class="item">
<input type="text" name="toDo" placeholder="Enter ToDo" required autocomplete="off">
<button type="submit" name="list" value="<%=listTitle%>">+</button>
</form>
</div>
<%- include('footer') -%>