-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.html
90 lines (85 loc) · 3.33 KB
/
project.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">
<title>Projects • Clockify</title>
<link rel="stylesheet" href="./style/project.css">
<link rel="stylesheet" href="./style/navbar.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css"
integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="icon" href="https://clockify.me/assets/images/favicon.ico">
</head>
<body>
<div id="navbar"></div>
<div id="box">
<div id="sidebar"></div>
<div class="content">
<div id="modal" class="modal"></div>
<div id="content-project">
<div>
<h1>Projects</h1>
<button>CREATE NEW PROJECT</button>
</div>
<div id="component-2-project">
<div>
FILTER
</div>
<div>
<select id="aaa">
<option value="active">Active</option>
<option value="archived">Archived</option>
<option value="all">All</option>
</select>
</div>
<div>
<button class="client-list">Client▾</button>
<div class="cl-1"></div>
</div>
<div>
<button class="access-user">Access▾</button>
<div class="cl-2"></div>
</div>
<div>
<button class="billing">Billing▾</button>
<div class="cl-3">
</div>
</div>
<div>
<input type="search" placeholder="Project Name" id="prj-name">
</div>
<div>
<button class="apply-filter">APPLY FILTER</button>
</div>
</div>
<div id="project-details">
<div>
Projects
</div>
<div>
<table>
<thead>
<tr>
<th>NAME</th>
<th>CLIENT</th>
<th>TRACKED</th>
<th>AMOUNT</th>
<th>PROGRESS</th>
<th>ACCESS</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
<script src="./script/project.js"></script>
<script src="./script/client.js" type="module"></script>
<!-- <script src="./pr-comp/pr-script/nav_side.js" type="module"></script> -->