23 lines
967 B
PHP
23 lines
967 B
PHP
<?php
|
|
// Placeholder for login page
|
|
header('Content-Type: text/html; charset=utf-8');
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Login - Haki Scheduling Master</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
</head>
|
|
<body>
|
|
<div class="d-flex flex-column justify-content-center align-items-center vh-100 text-center">
|
|
<h1 class="display-4">Login Page Coming Soon</h1>
|
|
<p class="lead">This is where school administrators and teachers will access their timetables.</p>
|
|
<a href="index.php" class="btn btn-primary mt-3">Go Back to Homepage</a>
|
|
</div>
|
|
</body>
|
|
</html>
|