-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdokumen_menunggu.html
More file actions
120 lines (109 loc) · 5.5 KB
/
Copy pathdokumen_menunggu.html
File metadata and controls
120 lines (109 loc) · 5.5 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
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dokumen - Aplikasi Kontrak</title>
<link rel="stylesheet" href="dokumen_all.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
</head>
<body>
<header class="top-header">
<div class="logo-container">
<img src="assets/logo-pelindo.png" alt="Logo Pelindo">
</div>
<div class="search-container">
<input type="text" placeholder="Cari Kontrak">
<i class="fa-solid fa-filter filter-icon"></i>
</div>
</header>
<div class="main-container">
<nav class="sidebar">
<ul class="sidebar-menu">
<li><a href="#"><i class="fa-solid fa-grip"></i> Beranda</a></li>
<li><a href="#" class="active"><i class="fa-solid fa-file-lines"></i> Dokumen</a></li>
<li><a href="#"><i class="fa-solid fa-bell"></i> Notifikasi</a></li>
<li><a href="#"><i class="fa-solid fa-clock-rotate-left"></i> Riwayat</a></li>
<li><a href="#"><i class="fa-solid fa-gear"></i> Pengaturan</a></li>
</ul>
<div class="sidebar-profile">
<img class="profile-img" src="assets/profile-picture.jpg" alt="Foto Profil Keisha">
<a href="#" class="profile-link">
<span class="profile-name">Keisha Sakura</span>
</a>
<small class="profile-title">Tim Manajemen</small>
</div>
</nav>
<div class="main-content">
<div class="page-header">
<i class="fa-solid fa-file-lines"></i>
<h1>Dokumen</h1>
</div>
<div class="tabs">
<a href="#" class="tab">Semua</a>
<a href="#" class="tab active">Menunggu ditinjau</a>
<a href="#" class="tab">Sedang ditinjau</a>
<a href="#" class="tab">Selesai ditinjau</a>
<a href="#" class="tab">Sedang berlangsung</a>
</div>
<table>
<thead>
<tr>
<th>Judul Dokumen ▲</th>
<th>Nama Instansi</th>
<th>Tanggal diunggah ▲</th>
<th>Tenggat ditinjau ▲</th>
<th>Penanggung Jawab</th>
</tr>
</thead>
<tbody>
<tr>
<td width="32%">Perjanjian Penyimpanan dan Pengiriman Barang di Pelabuhan Tepi Sana</td>
<td width="15%">PT Menyala</td>
<td width="15%">21 / 07 / 2025</td>
<td width="15%">21 / 08 / 2025</td>
<td width="23%">
<img class="profile-img" src="assets/profile-picture.jpg" alt="Foto Profil Keisha">
<img class="profile-img" src="assets/profile-picture.jpg" alt="Foto Profil Keisha">
<img class="profile-img" src="assets/profile-picture.jpg" alt="Foto Profil Keisha">
</td>
</tr>
<tr>
<td width="32%">Perjanjian Kerja Sama Pengiriman Musim Semi</td>
<td width="15%">PT Papa Levina</td>
<td width="15%">24 / 07 / 2025</td>
<td width="15%">29 / 08 / 2025</td>
<td width="23%">
<img class="profile-img" src="assets/profile-picture.jpg" alt="Foto Profil Keisha">
<img class="profile-img" src="assets/profile-picture.jpg" alt="Foto Profil Keisha">
<img class="profile-img" src="assets/profile-picture.jpg" alt="Foto Profil Keisha">
</td>
</tr>
<tr>
<td width="32%">Perjanjian Peminjaman Tempat Parkir Kapal dengan PT BolaUbi</td>
<td width="15%">PT BolaUbi</td>
<td width="15%">04 / 06 / 2025</td>
<td width="15%">30 / 08 / 2025</td>
<td width="23%">
<img class="profile-img" src="assets/profile-picture.jpg" alt="Foto Profil Keisha">
<img class="profile-img" src="assets/profile-picture.jpg" alt="Foto Profil Keisha">
<img class="profile-img" src="assets/profile-picture.jpg" alt="Foto Profil Keisha">
</td>
</tr>
<tr>
<td width="32%">Perjanjian Penyimpanan dan Pengiriman Barang di Pelabuhan Twice</td>
<td width="15%">PT JYP</td>
<td width="15%">05 / 07 / 2025</td>
<td width="15%">11 / 08 / 2025</td>
<td width="23%">
<img class="profile-img" src="assets/profile-picture.jpg" alt="Foto Profil Keisha">
<img class="profile-img" src="assets/profile-picture.jpg" alt="Foto Profil Keisha">
<img class="profile-img" src="assets/profile-picture.jpg" alt="Foto Profil Keisha">
</td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>