Menu bar and Upcoming PPR

This commit is contained in:
2025-03-31 12:08:39 +00:00
parent f6368f12f1
commit ac5cd4f3a0
2 changed files with 358 additions and 0 deletions

View File

@@ -169,10 +169,43 @@ require_db_auth();
z-index: 10;
}
/* Menu bar styling */
.menu-bar {
display: flex;
justify-content: center;
background-color: #333;
padding: 10px 0;
margin-bottom: 20px;
}
.menu-bar a {
color: white;
text-decoration: none;
padding: 10px 20px;
font-family: Arial, sans-serif;
font-size: 16px;
transition: background-color 0.3s;
}
.menu-bar a:hover {
background-color: #575757;
}
.menu-bar a.active {
background-color: #007bff;
font-weight: bold;
}
</style>
</head>
<body>
<div class="menu-bar">
<a href="tower.php" class="active">HOME</a>
<a href="upcoming.php">Future PPRs</a>
<a href="admin.php">Reports</a>
</div>
<script>
function markAction(id, action, title, buttonText) {
const now = new Date();