-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.html
118 lines (111 loc) · 4.01 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dashboard Team 22 Medan</title>
<!-- Fonts -->
<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=Geologica:[email protected]&display=swap"
rel="stylesheet"
/>
<!-- Feather Icon -->
<script src="https://unpkg.com/feather-icons"></script>
<!-- Styles -->
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href= "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
</head>
<body>
<nav class="navbar">
<a href="https://revou.co/">
<img src="./img/logo (2).png" alt="logo" class="logo" />
</a>
<div class="menu">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="dashboard.html">Dashboard</a>
<a href="feedback.html">Feedback</a>
</div>
<div class="menu-toggle">
<input type="checkbox">
<span></span>
<span></span>
<span></span>
</div>
</nav>
<!-- dashboard -->
<section class="dashboard" id="dashboard">
<h1>Dashboard</h1>
<h2>Our Summary Report</h2><br>
<div id="Dashboard">
<div class="grid-container">
<div class="judul">
<h1>Pizza Sales Report</h1>
</div>
<div class="category"> Select Category:
<label for="categoryDropdown"></label>
<select id="categoryDropdown">
<option value="all">All</option>
<option value="Classic">Classic</option>
<option value="Veggie">Veggie</option>
<option value="Chicken">Chicken</option>
<option value="Supreme">Supreme</option>
</select>
</div>
<div class="totalOrder">Total Order</div>
<div class="totalRevenue">Total Revenue</div>
<div class="totalSales">Total Sales</div>
<div class="revenueChart">Monthly Revenue Chart
<canvas id="revChart"></canvas>
</div>
<div class="Size">Select Size:
<label for="sizeDropdown"></label>
<select id="sizeDropdown">
<option value="all">All</option>
<option value="S">Small</option>
<option value="M">Medium</option>
<option value="L">Large</option>
<option value="XL">Extra Large</option>
<option value="XXL">Extra Extra Large</option>
</select>
</div>
<div class="sizeChart">Size of Pizza
<canvas id="sizChart" width="80" height="80"></canvas>
</div>
<div class="salesChart">Monthly Sales Chart
<canvas id="salChart"></canvas>
</div>
<div class="salesCategory">Sales Pizza per Category
<canvas id="catChart"></canvas>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="socials">
<a href="https://www.instagram.com/pizzaautentica22?igsh=MWV3bnhpdWFkZXJxNg=="><i data-feather="instagram"></i></a>
<a href="https://x.com/PizzaAutentica_?t=Me6W1_NIal5DRRZFrSifeA&s=09"><i data-feather="twitter"></i></a>
<a href="https://www.facebook.com/profile.php?id=61560731453196&mibextid=ZbWKwL"><i data-feather="facebook"></i></a>
</div>
<div class="links">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="dashboard.html">Dashboard</a>
<a href="feedback.html">Feedback</a>
</div>
<div class="credit">
<p>Created by <a href="">SECTION MEDAN TEAM 22</a>. | © 2024.</p>
</div>
</footer>
<!-- Feather Icons -->
<script>
feather.replace();
</script>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="script.js"></script>
<script src="navbar.js"></script>
</body>
</html>