-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.html
More file actions
105 lines (96 loc) · 4.88 KB
/
project.html
File metadata and controls
105 lines (96 loc) · 4.88 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Projects</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
<link rel="stylesheet" href="project.css">
</head>
<body>
<!-- Sliding Sidebar -->
<div id="mySidenav" class="side-nav">
<div class="nav-items">
<a href="#"><img src="Logo.jpg" alt="Logo" width="40px" style="border-radius: 50%;"><span>Task Sphere</span></a>
<a href="calendar.html"><i class="fa-solid fa-house-chimney"></i><span>Home</span></a>
<a href="myTasks.html"><i class="fa-regular fa-pen-to-square"></i><span>My Task</span></a>
<a href="project.html"><i class="fa-solid fa-diagram-project"></i><span>Project</span></a>
<a href="profile.html"><i class="fa-regular fa-circle-user user-icon"></i><span>Profile</span></a>
<a href="Login.html"><i class="fa-solid fa-arrow-right-from-bracket"></i><span>Logout</span></a>
</div>
</div>
<!-- Main Content -->
<div id="project_part">
<div id="Heading">
<h1><i class="fa-solid fa-diagram-project"></i> Projects</h1>
<img src="project1.jpg" alt="Project" height="120px" style="z-index: 1; position: absolute; right: 5px; top: 5px;">
<img src="project2.jpg" alt="Project" height="120px" style="z-index: 1; position: absolute; right: 60px; top: 5px;">
</div>
<div class="searchBAR">
<button class="btn" id="btn" onclick="openDialog()"><i class="fa fa-plus"></i>ADD PROJECT</button>
<input type="search" id="search" placeholder="Search for Projects" />
<button class="btn" id="searchicon" onclick="search()">
<i class="fa fa-search"></i></button>
</div>
<hr>
<nav>
<a onclick="display4()">All Projects</a>
<a onclick="display1()">OverDue</a>
<a onclick="display2()">Today</a>
<a onclick="display3()">Upcoming</a>
</nav>
<hr>
<div id="addProject">
<form id="projectForm">
<label for="name">Project Name :
<input type="text" id="projectName" placeholder="Enter your project name" required>
</label><br></br>
<label for="description">Description :
<textarea id="description" rows="4" cols="50" placeholder="Enter the project description" required></textarea>
</label><br></br>
<label for="deadline">Deadline :
<input type="date" id="projectDeadline" required>
</label><br></br>
<label for="members" id="members">Team Members :
<input type="text" id="membersinput" placeholder="Enter the team members" required>
<button type="button" id="addMembersBtn" onclick="addMembers()">ADD TEAM MEMBERS</button>
<button type="button" id=submitBtn onclick="collectTeamMembers()">OK</button>
</label><br></br>
<label for="addProject" id="buttons">
<button type="submit" id="addProjectBtn" onclick="addToList()">Add Project</button>
<button type="button" id="cancelBtn" onclick="closeDialog()">Cancel</button>
</label>
</form>
</div>
<div id="projectList">
<table class="projectTable" id="projectTable">
<thead>
<tr>
<th>PROJECT NAME</th>
<th>TEAM MEMBERS</th>
<th>DESCRIPTION</th>
<th>DEADLINE</th>
<th>STATUS</th>
</thead>
<tbody>
</tbody>
</table>
</div>
<div id="overdue">
<h2 id="overdueHeading">Overdue</h2>
<ul id="overdueList"></ul>
</div>
<div id="today">
<h2>Today</h2>
<ul id="todayList"></ul>
</div>
<div id="upcoming">
<h2>Upcoming</h2>
<ul id="upcomingList"></ul>
</div>
<div id="membersContainer">
</div>
</div>
<script src="project.js"></script>
</body>
</html>