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('/dashboard'); }, 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 (
Continue your transformation with KLC's world-class leadership development programs. Access your personalized learning dashboard and connect with a global community of leaders.
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.
{feature.description}
{feature.description}
Already have an account?
Sign in to your KLC account
Our learning advisors are here to help you choose the right programs and get the most out of your leadership development experience.