JezK
Edit File: index.php
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>CUET Test Platform</title> <link rel="stylesheet" href="assets/style.css"> <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet"> </head> <body class="login-container"> <div class="login-box card" style="text-align: center;"> <h1 class="login-title" style="margin-bottom: 0.5rem;">Welcome</h1> <p style="color: var(--text-muted); margin-bottom: 2rem;">Select your role to continue</p> <div style="display: grid; gap: 1rem;"> <a href="admin/login.php" class="btn btn-primary" style="display: block;"> Admin Portal </a> <a href="user/login.php" class="btn btn-secondary" style="display: block;"> Student Portal </a> <div style="text-align: center; margin-top: 1rem; border-top: 1px solid #e2e8f0; padding-top: 1rem;"> <p style="margin-bottom: 0.5rem; font-size: 0.9rem;">New here? Try a demo.</p> <a href="demo_register.php" class="btn" style="display: block; background: #10b981; color: white;"> Attempt Demo Test </a> </div> </div> </div> </body> </html>