Registra tu Panadería

Crea tu cuenta y comienza a digitalizar tu negocio

{/* Progress Indicator */} {showProgressSteps && (
{steps.map((step, index) => (
{completedSteps.has(step.id) ? ( ) : ( index + 1 )}
{step.title}
{step.description}
{index < steps.length - 1 && (
)}
))}
{/* Progress Bar */}
)} {/* Step Content */} {currentStep !== 'verification' ? (
{/* Personal Information Step */} {currentStep === 'personal' && (

Información Personal

Cuéntanos sobre ti para personalizar tu experiencia

} /> } /> } />
)} {/* Bakery Information Step */} {currentStep === 'bakery' && (

Información de tu Panadería

Déjanos conocer los detalles de tu negocio

} /> } />
)} {/* Security Step */} {currentStep === 'security' && (

Seguridad y Términos

Crea una contraseña segura y acepta nuestros términos

} rightIcon={ } /> } rightIcon={ } />
handleInputChange('acceptTerms')(e.target.checked)} className="mt-1 h-4 w-4 rounded border-border-primary text-color-primary focus:ring-color-primary focus:ring-offset-0" disabled={isLoading} />
{errors.acceptTerms && (

{errors.acceptTerms}

)}
handleInputChange('acceptPrivacy')(e.target.checked)} className="mt-1 h-4 w-4 rounded border-border-primary text-color-primary focus:ring-color-primary focus:ring-offset-0" disabled={isLoading} />
{errors.acceptPrivacy && (

{errors.acceptPrivacy}

)}
handleInputChange('acceptMarketing')(e.target.checked)} className="mt-1 h-4 w-4 rounded border-border-primary text-color-primary focus:ring-color-primary focus:ring-offset-0" disabled={isLoading} />
)} {/* Navigation Buttons */}
{currentStep !== 'personal' && ( )}
{error && (
{error}
)} ) : ( /* Verification Step */

¡Cuenta creada exitosamente!

Hemos enviado un enlace de verificación a:

{formData.email}

Revisa tu bandeja de entrada (y la carpeta de spam) y haz clic en el enlace para activar tu cuenta.

)} {/* Login Link */} {onLoginClick && currentStep !== 'verification' && (

¿Ya tienes una cuenta?

)} ); }; export default RegisterForm;