-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
144 lines (144 loc) · 3.96 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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!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>Ganee - Transaksi</title>
<link rel="stylesheet" href="global.css">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="assets/Ganee_Logo_Favicon_noBG.png" type="image/x-icon">
</head>
<body>
<nav>
<ul>
<li class="active">
<a href="index.html" title="Dashboard">
<img height="40" width="40" src="assets/tachometer-alt.svg" alt="">
</a>
</li>
<li class="">
<a href="Transaksi/index.html" title="Transaksi">
<img height="40" width="40" src="assets/file-invoice.svg" alt="">
</a>
</li>
<li class="">
<a href="TambahProduk/index.html" title="Tambah Produk">
<img height="40" width="40" src="assets/plus-square-regular.svg" alt="">
</a>
</li>
<li class="">
<a href="TambahStok/index.html" title="Tambah Stok">
<img height="40" width="40" src="assets/cart-plus-regular.svg" alt="">
</a>
</li>
<li class="">
<a href="Settings/index.html" title="Settings">
<img height="40" width="40" src="assets/cogs-regular.svg" alt="">
</a>
</li>
</ul>
</nav>
<main>
<section class="stats-container">
<header>
<div>
<img height="60" src="../assets/Ganee_Logo_edt_noBG.png" alt="">
<div>
<h1>Dashboard</h1>
<p class="current-date"></p>
</div>
</div>
<hr>
</header>
<section class="general">
<ul>
<li>
<article class="revenue">
<div>
<div class="icon">
<img src="assets/dollar-sign-solid.svg" width="20" height="20" alt="">
</div>
<p>Total Revenue</p>
</div>
<h1></h1>
</article>
</li>
<li>
<article class="ordered">
<div>
<div class="icon">
<img src="assets/bookmark-regular.svg" width="20" height="20" alt="">
</div>
<p>Total Items Ordered</p>
</div>
<h1></h1>
</article>
</li>
<li>
<article class="customers">
<div>
<div class="icon">
<img src="assets/users-regular.svg" width="20" height="20" alt="">
</div>
<p>Total Customers</p>
</div>
<h1></h1>
</article>
</li>
</ul>
</section>
<article class="order">
<h1>Order Report</h1>
<table>
<thead>
<tr>
<th>Item</th>
<th>Price</th>
<th>Quantity</th>
<th>Total Payment</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<!-- template 0 -->
</tbody>
</table>
</article>
</section>
<section class="side-stats-container">
<section class="most-ordered">
<h1>Most Ordered</h1>
<hr>
<ul>
<!-- template 1 -->
</ul>
</section>
</section>
</main>
<template>
<tr>
<td>Product Name</td>
<td>Rp 23.123</td>
<td>3</td>
<td>Rp 69.369</td>
<td>Monday, June 7, 2021 20:20</td>
</tr>
</template>
<template>
<li>
<article>
<img width="50" height="50" src="https://www.forisa.co.id/images/product/popice_Grape_other.png" alt="">
<div>
<h2 itemprop="name">Product Name</h2>
<p class="qty">
<data value="120">120</data> items ordered
</p>
</div>
</article>
</li>
</template>
<script src="global.js"></script>
<script src="script.js"></script>
</body>
</html>