60 lines
2.9 KiB
PHP
60 lines
2.9 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Login - Student Management System</title>
|
|
<meta name="description" content="Login to the Student Management System.">
|
|
<meta name="keywords" content="student management, school admin, login, education, Built with Flatlogic Generator">
|
|
<meta property="og:title" content="Login - Student Management System">
|
|
<meta property="og:description" content="Login to the Student Management System.">
|
|
<meta property="og:image" content="">
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<meta name="twitter:image" content="">
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap" rel="stylesheet">
|
|
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
</head>
|
|
<body>
|
|
<div class="login-container">
|
|
<div class="login-card">
|
|
<div class="text-center mb-4">
|
|
<h1 class="h3 mb-3 fw-normal">Student Management System</h1>
|
|
<p>Please sign in to continue</p>
|
|
</div>
|
|
<form>
|
|
<div class="form-floating mb-3">
|
|
<input type="email" class="form-control" id="floatingInput" placeholder="name@example.com" required>
|
|
<label for="floatingInput">Email address</label>
|
|
</div>
|
|
<div class="form-floating mb-3">
|
|
<input type="password" class="form-control" id="floatingPassword" placeholder="Password" required>
|
|
<label for="floatingPassword">Password</label>
|
|
</div>
|
|
|
|
<div class="d-flex justify-content-between align-items-center mb-3">
|
|
<div class="form-check">
|
|
<input class="form-check-input" type="checkbox" value="remember-me" id="flexCheckDefault">
|
|
<label class="form-check-label" for="flexCheckDefault">
|
|
Remember me
|
|
</label>
|
|
</div>
|
|
<a href="#" class="forgot-password">Forgot Password?</a>
|
|
</div>
|
|
|
|
<button class="w-100 btn btn-lg btn-primary" type="submit">Sign in</button>
|
|
</form>
|
|
<p class="mt-4 text-center sign-up-text">Don't have an account? <a href="#">Sign Up</a></p>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
|
<script>
|
|
feather.replace()
|
|
</script>
|
|
</body>
|
|
</html> |