-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReport.html
More file actions
76 lines (66 loc) · 2.1 KB
/
Report.html
File metadata and controls
76 lines (66 loc) · 2.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Monthly Report</title>
<link rel="icon" href="img/logo.(1).PNG" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<style>
.button {
margin-bottom: 5px;
margin-left: 40%;
background: linear-gradient(45deg, #FFA500, #FF6347); /* Gradient from orange to tomato */
border: none;
border-radius: 25px;
color: white;
padding: 15px 30px;
font-size: 16px;
cursor: pointer;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s ease;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.button:hover {
background: linear-gradient(45deg, #FF6347, #FFA500); /* Gradient reversed on hover */
transform: scale(1.05);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.button:focus {
outline: none;
}
.button:active {
transform: scale(0.98);
}
</style>
</head>
<body id="MonthlyReportBody">
<div class="heading-container">
<img src="img/logo.(1).PNG" alt="Logo" class="heading-image">
<h1 id="GetReportHeading">Get Reports</h1>
</div>
<div>
<table id="CustomerDetailsReport" border="2">
<thead>
<tr>
<th>Order ID</th>
<th>Customer Name</th>
<th>Order Quantity</th>
<th>Total</th>
<th>Date</th>
</tr>
</thead>
<tbody id="TbodyReport">
<!-- Rows will be inserted here -->
</tbody>
</table>
</div>
<input type="button" class="button" value="Get Report" onclick="generateReport()">
<button class="back-button fade-in" onclick="location.href='ReportsUI.html'">Back</button>
<script src="https://unpkg.com/jspdf-invoice-template@1.4.0/dist/index.js"></script>
<script src="report.js"></script>
<script src="app.js"></script>
</body>
</html>