-
Notifications
You must be signed in to change notification settings - Fork 0
/
tasks.html
40 lines (34 loc) · 990 Bytes
/
tasks.html
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
<!DOCTYPE html>
<html>
<head>
<title>Event Manager</title>
<link rel="stylesheet" href="./css/tasks.css" />
</head>
<body>
<div class="todo-header">
<a href="./index.html"><h1>EVENT MANAGER</h1></a>
</div>
<div class="page-container">
<div class="title-header">TASKS</div>
<div class="contents-div">
<h1 class="event-name" id="event-name"></h1>
<div class="events-container">
<table id="tasks-table">
<tr>
<th><strong>Event Id</strong></th>
<th><strong>Task Name</strong></th>
<th><strong>Status</strong></th>
</tr>
</table>
</div>
<button class="confirm-button" onclick="confirmStatus()">
Confirm
</button>
</div>
<div class="warning-popup" id="warning-popup">
<div id="warning-msg"></div>
</div>
</div>
<script src="./scripts/tasks.js"></script>
</body>
</html>