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, Mail, Lock, Phone } from 'lucide-react'; import { navigateTo } from './Router'; export function SelfLearnerSignUp() { const [formData, setFormData] = useState({ fullName: '', email: '', password: '', phoneNumber: '' }); const [showPassword, setShowPassword] = useState(false); const [agreeToTerms, setAgreeToTerms] = useState(false); const [isLoading, setIsLoading] = useState(false); const handleInputChange = (field: string, value: string) => { setFormData(prev => ({ ...prev, [field]: value })); }; const handleSignUp = async (e: React.FormEvent) => { e.preventDefault(); if (!agreeToTerms) { alert('Please agree to the Terms of Service and Privacy Policy'); return; } setIsLoading(true); // Simulate registration setTimeout(() => { setIsLoading(false); // Navigate to dashboard or success page navigateTo('https://klc-learner.wdiprojects.com'); }, 2000); }; 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: 'World-Class Content', description: 'Access cutting-edge leadership programs from industry experts and renowned faculty' }, { icon: Users, title: 'Global Network', description: 'Connect with ambitious leaders worldwide and build lasting professional relationships' }, { icon: Target, title: 'Personalized Learning', description: 'Get customized learning paths based on your goals and leadership style' }, { icon: Award, title: 'Recognized Credentials', description: 'Earn certificates and credentials that advance your career and open new opportunities' } ]; return (
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}
Join KLC and start your leadership journey
Our learning advisors are here to help you choose the right programs and get the most out of your leadership development experience.