import React, { useState } from 'react'; import { Button } from './ui/button'; import { Input } from './ui/input'; import { Label } from './ui/label'; import { Card, CardContent } from './ui/card'; import { Checkbox } from './ui/checkbox'; import { BookOpen, Users, Target, Award, ArrowRight, Eye, EyeOff, User } from 'lucide-react'; import { navigateTo } from './Router'; export function SelfLearnerSignIn() { const [email, setEmail] = useState(''); const [password, setPassword] = useState(''); const [showPassword, setShowPassword] = useState(false); const [rememberMe, setRememberMe] = useState(false); const [isLoading, setIsLoading] = useState(false); const handleSignIn = async (e: React.FormEvent) => { e.preventDefault(); setIsLoading(true); // Simulate authentication setTimeout(() => { setIsLoading(false); // Navigate to dashboard or success page navigateTo('https://klc-learner.wdiprojects.com'); }, 1500); }; const transformationFeatures = [ { icon: BookOpen, title: 'World-Class Content', description: 'Access premium leadership courses from industry experts' }, { icon: Users, title: 'Global Community', description: 'Join 25,000+ leaders from top organizations worldwide' }, { icon: Award, title: 'Recognized Credentials', description: 'Earn certificates valued by Fortune 500 companies' }, { icon: Target, title: 'Personalized Path', description: 'Get customized learning recommendations based on your goals' } ]; const learningFeatures = [ { icon: BookOpen, title: 'Expert-Led Programs', description: 'Learn from industry leaders and world-class faculty' }, { icon: Users, title: 'Peer Learning Network', description: 'Connect with like-minded professionals and expand your network' }, { icon: Target, title: 'Personalized Growth', description: 'Tailored learning paths to accelerate your leadership journey' }, { icon: Award, title: 'Recognized Certification', description: 'Industry-recognized credentials to advance your career' } ]; return (
{/* Main Content */}
{/* Header Section */}
Individual Learning

Welcome Back to Your Leadership Journey

Continue your transformation with KLC's world-class leadership development programs. Access your personalized learning dashboard and connect with a global community of leaders.

{/* Two Column Layout */}
{/* Left Column - Content */}
{/* Leadership Transformation Section */}
⭐ Join KLC Community

Start Your Leadership Transformation

Join thousands of professionals who have accelerated their careers through KLC's proven leadership development programs. Your journey to becoming an exceptional leader starts here.

{transformationFeatures.map((feature, index) => (

{feature.title}

{feature.description}

))}
{/* Your Learning Experience */}

Your Learning Experience

{learningFeatures.map((feature, index) => (

{feature.title}

{feature.description}

))}
{/* Existing Account Note */}

Already have an account?

{/* Right Column - Sign In Form */}
{/* Form Header */}

Welcome Back

Sign in to your KLC account

{/* Sign In Form */}
{/* Email Field */}
setEmail(e.target.value)} placeholder="you@example.com" required className="mt-2 h-12" style={{ fontSize: 'var(--font-body)', fontFamily: 'var(--font-family-base)' }} />
{/* Password Field */}
setPassword(e.target.value)} placeholder="Enter your password" required className="h-12 pr-12" style={{ fontSize: 'var(--font-body)', fontFamily: 'var(--font-family-base)' }} />
{/* Remember Me & Forgot Password */}
{/* Sign In Button */}
{/* Demo Credentials */}

i
Demo credentials:

Email: demo@klc.edu.in | Password: demo123
{/* Sign Up Links */}
Don't have an account?{' '}
Looking for corporate access?{' '}
{/* Need Help Section - Separate Section Below */}

Need Help Getting Started?

Our learning advisors are here to help you choose the right programs and get the most out of your leadership development experience.

); }