dec18/public/prod-us-central1/index.html
2024-12-17 13:08:52 +05:30

66 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PROD-US-CENTRAL1 Automation Reports</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #201715;
color: white;
text-align: center;
}
h1 {
margin-top: 20px;
font-size: 24px;
}
.report-list {
list-style-type: none;
padding: 0;
margin: 20px;
}
.report-item {
background-color: #ff592f;
color: white;
padding: 12px;
margin: 10px 0;
border-radius: 8px;
display: inline-block;
width: 300px;
text-align: center;
text-decoration: none;
}
.report-item:hover {
background-color: #cc4826;
}
</style>
</head>
<body>
<header>
<h1>Automation Reports - PROD-US-CENTRAL1</h1>
</header>
<main>
<ul class="report-list" id="reportList">
<!-- Report links will be populated by JavaScript -->
</ul>
</main>
<footer>
<p>&copy; 2024 Boltic Automation. All rights reserved.</p>
</footer>
<!-- Link to the external JavaScript file -->
<script src="script.js"></script>
</body>
</html>