-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (25 loc) · 693 Bytes
/
Copy pathindex.html
File metadata and controls
26 lines (25 loc) · 693 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Task Manager</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Task Manager</h1>
<form id="taskForm">
<input type="text" id="descriptionInput" placeholder="Descrizione">
<input type="date" id="deadlineInput">
<select id="statusSelect">
<option value="inCorso">In corso</option>
<option value="completato">Completato</option>
<option value="inAttesa">In attesa</option>
</select>
<button type="submit">Aggiungi</button>
</form>
<ul id="taskList"></ul>
</div>
<script src="script.js"></script>
</body>
</html>