-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (87 loc) · 5.36 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<!-- <script src="https://cdn.tailwindcss.com"></script> -->
<title>Task Progress</title>
</head>
<body>
<h1 class="m-3">Tasks Progress</h1>
<div class="d-flex justify-content-center mt-5 w-100">
<div id="goalsHeader" class="d-flex justify-content-between mx-4 align-items-center px-4 py-2 bg-light rounded-top border" style="width: 95vw;">
<h3>Goals</h3>
<button class="btn btn-outline-primary" data-bs-toggle="modal" data-bs-target="#createTasksModal">Create Task</button>
<div class="modal fade" id="createTasksModal" tabindex="-1" aria-labelledby="createTasksModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="createTasksModalLabel">Modal title</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<form action="#">
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-outline-danger" data-bs-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-primary">Create Task</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="d-flex justify-content-center w-100">
<div class="d-flex flex-column justify-content-center bg-light border rounded-bottom p-3" style="width: 95vw;">
<div style="width: 92vw;">
<div class="d-flex text-secondary" style="margin-left: 18%; height: 20px;">
<p style="font-size: 0.7rem; margin-left: 100px">DESCRIPTION</p>
<p style="font-size: 0.7rem; margin-left: 150px">DATE CREATED</p>
<p style="font-size: 0.7rem; margin-left: 100px">DUE DATE</p>
<p style="font-size: 0.7rem; margin-left: 100px">STATUS</p>
</div>
<div>
<p class="rounded-top text-white px-2 m-0 border border-bottom-0" style="background-color: rgb(186, 75, 227); width: max-content; font-size: 0.8rem">IN PROGRESS</p>
<div>
<div class="d-flex align-items-center bg-white px-3 pt-1 border" style="border-radius: 0 0.25rem 0.25rem;">
<p class="w-25">Task 1</p>
<div class="w-100 d-flex">
<p class="text-truncate" style="width: 150px; margin-left: 65px;">Praeterea iter est quasdam res quas ex communi.</p>
<p style="width: 100px; margin-left: 75px">12/5/2023</p>
<p class="text-danger" style="width: 100px; margin-left: 75px">22/5/2023</p>
<p style="margin-left: 55px;">In Progress</p>
</div>
</div>
</div>
</div>
</div>
<div class="mt-4" style="width: 92vw;">
<div class="d-flex text-secondary" style="margin-left: 18%; height: 20px;">
<p style="font-size: 0.7rem; margin-left: 100px">DESCRIPTION</p>
<p style="font-size: 0.7rem; margin-left: 150px">DATE CREATED</p>
<p style="font-size: 0.7rem; margin-left: 100px">DUE DATE</p>
<p style="font-size: 0.7rem; margin-left: 100px">STATUS</p>
</div>
<div>
<p class="rounded-top text-white px-2 m-0 border border-bottom-0 bg-secondary px-4" style="width: max-content; font-size: 0.8rem">TO DO</p>
<div>
<div class="d-flex align-items-center bg-white px-3 pt-1 border" style="border-radius: 0 0.25rem 0.25rem;">
<p class="w-25">Task 1</p>
<div class="w-100 d-flex">
<p class="text-truncate" style="width: 150px; margin-left: 65px;">Praeterea iter est quasdam res quas ex communi.</p>
<p style="width: 100px; margin-left: 75px">12/5/2023</p>
<p class="text-danger" style="width: 100px; margin-left: 75px">22/5/2023</p>
<p style="margin-left: 55px;">Yet to begin</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>