64 lines
2.4 KiB
PHP
64 lines
2.4 KiB
PHP
<?php
|
|
require_once 'auth_helper.php';
|
|
|
|
$error = '';
|
|
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
|
$student_id = $_POST['student_id'] ?? '';
|
|
$email = $_POST['email'] ?? '';
|
|
$role = $_POST['role'] ?? '';
|
|
$password = $_POST['password'] ?? '';
|
|
|
|
// We search by student_id and verify email and role match if provided
|
|
$stmt = db()->prepare("SELECT * FROM users WHERE student_id = ? AND email = ? AND role = ?");
|
|
$stmt->execute([$student_id, $email, $role]);
|
|
$user = $stmt->fetch();
|
|
|
|
if ($user && password_verify($password, $user['password_hash'])) {
|
|
$_SESSION['user_id'] = $user['id'];
|
|
$_SESSION['user_role'] = $user['role'];
|
|
header('Location: index.php');
|
|
exit;
|
|
} else {
|
|
$error = 'Invalid Credentials. Please check your UID, Email, and Role.';
|
|
if (isset($_POST['role'])) { // Detect if coming from landing modal
|
|
header('Location: index.php?error=' . urlencode($error));
|
|
exit;
|
|
}
|
|
}
|
|
}
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Login - Online Election System</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<style>
|
|
body { background-color: #f8fafc; font-family: 'Inter', sans-serif; }
|
|
.login-card { max-width: 400px; margin: 100px auto; border-radius: 8px; box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1); }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="card login-card p-4">
|
|
<h2 class="text-center mb-4" style="color: #1e293b;">Election Login</h2>
|
|
<?php if ($error): ?>
|
|
<div class="alert alert-danger"><?php echo $error; ?></div>
|
|
<?php endif; ?>
|
|
<form method="POST">
|
|
<div class="mb-3">
|
|
<label class="form-label">Student ID (XX-XXXX)</label>
|
|
<input type="text" name="student_id" class="form-control" placeholder="00-0000" required pattern="\d{2}-\d{4}">
|
|
</div>
|
|
<div class="mb-3">
|
|
<label class="form-label">Password</label>
|
|
<input type="password" name="password" class="form-control" required>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary w-100" style="background-color: #2563eb;">Login</button>
|
|
</form>
|
|
<div class="mt-3 text-center">
|
|
<small>Don't have an account? <a href="signup.php">Register</a></small>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|