ADD file via upload
This commit is contained in:
parent
0bc596d587
commit
38a15b1a41
|
@ -0,0 +1,15 @@
|
|||
<!-- frontend/index.html -->
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Todo App</title>
|
||||
<script src="main.js" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Todo App</h1>
|
||||
<input type="text" id="todoInput" placeholder="Enter a todo">
|
||||
<button onclick="addTodo()">Add</button>
|
||||
<ul id="todoList"></ul>
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue