ADD file via upload

This commit is contained in:
p73692015 2024-01-09 21:12:12 +08:00
parent 0bc596d587
commit 38a15b1a41
1 changed files with 15 additions and 0 deletions

15
index.html Normal file
View File

@ -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>