-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtodo.ejs
More file actions
28 lines (24 loc) · 702 Bytes
/
Copy pathtodo.ejs
File metadata and controls
28 lines (24 loc) · 702 Bytes
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
<html>
<head>
<title>To-Do-App</title>
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script src="/assets/todo-list.js"></script>
<link href="/assets/styles.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="todo-table">
<form>
<input type="text" name="Item" placeholder="Add item..." required/>
<button type="submit">Add Item</button>
</form>
<ul>
<%for(var i=0;i<todoes.length;i++){ %>
<li><%= todoes[i].item %></li>
<% }%>
</ul>
</div>
</body>
</html>