66 lines
1.4 KiB
HTML
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>UAT-ASIA-SOUTH1 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 - UAT-ASIA-SOUTH1</h1>
|
|
</header>
|
|
|
|
<main>
|
|
<ul class="report-list" id="reportList">
|
|
<!-- Report links will be populated by JavaScript -->
|
|
</ul>
|
|
</main>
|
|
|
|
<footer>
|
|
<p>© 2024 Boltic Automation. All rights reserved.</p>
|
|
</footer>
|
|
|
|
<!-- Link to the external JavaScript file -->
|
|
<script src="script.js"></script>
|
|
|
|
</body>
|
|
</html>
|