-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate-task.html
More file actions
28 lines (28 loc) · 1.04 KB
/
create-task.html
File metadata and controls
28 lines (28 loc) · 1.04 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Create Task - Task Manager</title>
<link rel="stylesheet" href="styles/global.css">
<link rel="stylesheet" href="styles/tasks.css">
</head>
<body>
<div class="container container-task">
<a href="task-list.html" class="back-button">← Back</a>
<h2>Create New Task</h2>
<form id="task-form" class="task-form">
<input type="text" id="task-name" placeholder="Enter task name" required>
<input type="date" id="task-date" required>
<select id="task-priority" required>
<option value="">Select priority</option>
<option value="high">High</option>
<option value="medium">Medium</option>
<option value="low">Low</option>
</select>
<button type="submit">Save Task</button>
</form>
</div>
<script src="index.js"></script>
</body>
</html>