-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.html
More file actions
111 lines (101 loc) · 4.62 KB
/
dashboard.html
File metadata and controls
111 lines (101 loc) · 4.62 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
106
107
108
109
110
111
<!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 rel="stylesheet" href="dash.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter&display=swap" rel="stylesheet">
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
</style>
<title>Dashboard</title>
<link rel="icon" type="image/x-icon" href="logo2.png">
</head>
<body>
<h1>Dashboard</h1>
<div class="container2">
<div>
<div class="header1">Introduction</div>
<p class="container3">Welcome to <a href="" style="text-decoration: none; color:tomato"> Project
Handler</a></p>
<p class="container3">Confused? New here? Don't worry, <a href=""
style="color: tomato; text-decoration: none;">Get
started</a> using <br> <br> Project Handler </p>
</div>
<div>
<div class="header1">Projects</div>
<p class="container4">1. Project X <a href="" class="a1">View</a>
</p>
<p class="container4">2. Project Y <a href="" class="a12">View</a>
</p>
<p class="container4">3. Project A <a href="" class="a12">View</a>
</p>
<div style="margin: 5% 0 0 56.5%;">
<button type="button" class="button">
<span class="button__text">Create new project</span>
<span class="button__icon">
<img src="add.png" alt="" style="width: 30px; height:auto;">
</span>
</button>
</div>
</div>
</div>
<div class="container2">
<div>
<div class="header1">Tasks assigned</div>
<p class="container45">Task name <span style="margin: 0 0 0 15%;">Status</span><span
style="margin: 0 0 0 19.6%;">Deadline</span>
</p>
<hr style="border:1px tomao solid; width: 700px;">
<table class="container4">
<tr>
<td>Task01<a href="" style="text-decoration: none; color:tomato; margin: 0 0 0 5%">Project 1</a>
</td>
<td style="color:tomato;">Done</td>
<td style="color:tomato;">14/12/22</td>
</tr>
<tr>
<td>Task02<a href="" style="text-decoration: none; color:tomato; margin: 0 0 0 5%">Project 2</a>
</td>
<td style="color:tomato;">70%</td>
<td style="color:tomato;">14/12/22</td>
</tr>
<tr>
<td>Task03<a href="" style="text-decoration: none; color:tomato; margin: 0 0 0 5%">Project 3</a>
</td>
<td style="color:tomato;">5%</td>
<td style="color:tomato;">14/12/22</td>
</tr>
</table>
<div style="margin: 1.3% 0 0 52.5%;">
<button type="button" class="button">
<span class="button__text">View all tasks</span>
<span class="button__icon">
<img src="view.png" alt="" style="width: 30px; height:auto;">
</span>
</button>
</div>
</div>
<div>
<div class="header1">Team Lead's message</div>
<p class="container4">Complete the task within tomorrow <br> <a href="" class="a2">Project X</a>
</p>
<p class="container4">Task 4 needs to be completed asap <br> <a href="" class="a2">Project Y</a>
</p>
<div style="margin: 5% 0 0 56.5%;">
<button type="button" class="button">
<span class="button__text">View all messages</span>
<span class="button__icon">
<img src="view.png" alt="" style="width: 30px; height:auto;">
</span>
</button>
</div>
</div>
</div>
</body>
</html>