-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwelcome.html
More file actions
67 lines (58 loc) · 2.21 KB
/
welcome.html
File metadata and controls
67 lines (58 loc) · 2.21 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome</title>
<script type="module" src="app1.js"></script>
<link rel="stylesheet" href="style1.css">
<script type="module" src="app.js"></script>
</head>
<body>
<h1>App Management App</h1>
<input type="text" id="search-input" placeholder="Search tasks..." style="margin: 20px; padding: 10px; width: 300px;">
<button id="search-button" style="padding: 10px;">Search</button>
<div class="container">
<!-- To Do Column -->
<div id="todo-column" class="column">
<h2>To Do</h2>
<div id="todo-tasks">
<!-- Task cards will appear here -->
</div>
<button id="create-task-btn">Create Task</button>
</div>
<!-- In Progress Column -->
<div id="in-progress-column" class="column">
<h2>In Progress</h2>
<div id="in-progress-tasks">
<!-- Task cards will appear here -->
</div>
</div>
<!-- Done Column -->
<div id="done-column" class="column">
<h2>Done</h2>
<div id="done-tasks">
<!-- Task cards will appear here -->
</div>
</div>
</div>
<!-- Task Creation Modal -->
<div id="task-modal" class="modal">
<div class="modal-content">
<h2>Create Task</h2>
<input type="text" id="task-title" placeholder="Task Title" required />
<textarea id="task-description" placeholder="Task Description"></textarea>
<input type="text" id="task-assigned" placeholder="Assigned To" />
<label for="task-priority">Priority</label>
<select id="task-priority">
<option value="Most Important">Most Important</option>
<option value="Important">Important</option>
<option value="Least Important">Least Important</option>
</select>
<button id="save-task-btn">Save Task</button>
<button id="close-modal-btn">Close</button>
</div>
</div>
<button onclick="logout()">Logout</button>
</body>
</html>