-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReportsUI.html
More file actions
34 lines (32 loc) · 1.43 KB
/
ReportsUI.html
File metadata and controls
34 lines (32 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Reports UI</title>
<link rel="icon" href="img/logo.(1).PNG" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<style>
body {
background: linear-gradient(135deg, #FFD700, #FF6347); /* Gradient from gold to tomato orange */
color: #333; /* Dark text color for contrast */
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
</style>
</head>
<body>
<div class="heading-container">
<img src="img/logo.(1).PNG" alt="Logo" class="heading-image">
<h1 id="GetReportHeading">Get Reports</h1>
</div>
<input type="button" value="Monthly Report" id="btnMonthlyReport" onclick="location.href='Report.html'" >
<input type="button" value="Best Customer" id="btnBestCustomer" onclick="location.href='BestCustomer.html'" >
<input type="button" value="Items Report" id="btnItemsReport" onclick="location.href='itemReport.html'" >
<input type="button" value="Back To Home Page" id="btnHomeCashier" onclick="location.href='Admin.html'" >
<script src="app.js"></script>
</body>
</html>