-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.html
85 lines (75 loc) · 2.16 KB
/
dashboard.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="img/logo-nav.svg" />
<!-- link css dasboard -->
<link rel="stylesheet" href="css/dashboard.css" />
<!-- link fontawsome -->
<script
src="https://kit.fontawesome.com/d7f673dfd5.js"
crossorigin="anonymous"
></script>
<title>Admin Rent Apart</title>
</head>
<body>
<!-- Sidebar -->
<div class="sidebar">
<div class="logo-details">
<a href="index.html">
<img src="img/logo-nav.svg" alt="logo-rent" />
<p><span>Rent</span>Apart</p>
</a>
</div>
<ul class="nav-links">
<li>
<a href="dashboard.html" class="active">
<i class="fa-solid fa-house"></i>
<span class="links_name">Dashboard</span>
</a>
</li>
<li>
<a href="menu-dashboard/catalog.html">
<i class="fa-solid fa-file"></i>
<span class="links_name">Catalog</span>
</a>
</li>
<li>
<a href="menu-dashboard/transaction.html">
<i class="fa-solid fa-cart-shopping"></i>
<span class="links_name">Transaction</span>
</a>
</li>
<li>
<a href="index.html">
<i class="fa-solid fa-right-from-bracket"></i>
<span class="links_name">Log out</span>
</a>
</li>
</ul>
</div>
<!-- Akhir Sidebar -->
<!-- Home Section -->
<section class="home-section">
<nav>
<div class="sidebar-button">
<i class="fa-solid fa-angles-right sidebarBtn"></i>
</div>
<div class="profile-details">
<i class="fa-solid fa-user"></i>
<p>Profile</p>
</div>
</nav>
<!-- isi konten -->
<div class="home-content">
<h1>Selamat Datang Di Dashboard RentApart</h1>
</div>
<!-- akhir isi konten -->
</section>
<!-- Akhir Home Section -->
<!-- Js Script -->
<script src="js/dashboard.js"></script>
<!-- Akhir Js Script -->
</body>
</html>