- {/* Current Password */}
-
-
- Current Password
-
-
- handleChange('currentPassword', e.target.value)}
- placeholder="Enter current password"
- className="w-full h-[40px] px-4 pr-12 border border-[#00293D]/20 rounded-[15px] text-[14px] font-serif text-[#00293D] placeholder:text-[#00293D]/40 focus:outline-none focus:border-[#E58625]"
- />
- toggleShowPassword('current')}
- className="absolute right-4 top-1/2 -translate-y-1/2 text-[#00293D]/50 hover:text-[#00293D] cursor-pointer"
- >
- {showPasswords.current ? '🙈' : '👁️'}
-
-
-
-
- {/* New Password */}
-
-
- New Password
-
-
- handleChange('newPassword', e.target.value)}
- placeholder="Enter new password"
- className="w-full h-[40px] px-4 pr-12 border border-[#00293D]/20 rounded-[15px] text-[14px] font-serif text-[#00293D] placeholder:text-[#00293D]/40 focus:outline-none focus:border-[#E58625]"
- />
- toggleShowPassword('new')}
- className="absolute right-4 top-1/2 -translate-y-1/2 text-[#00293D]/50 hover:text-[#00293D] cursor-pointer"
- >
- {showPasswords.new ? '🙈' : '👁️'}
-
-
-
- Minimum 8 characters with at least one uppercase, lowercase, and number
-
-
-
- {/* Confirm Password */}
-
-
- Confirm New Password
-
-
- handleChange('confirmPassword', e.target.value)}
- placeholder="Confirm new password"
- className="w-full h-[40px] px-4 pr-12 border border-[#00293D]/20 rounded-[15px] text-[14px] font-serif text-[#00293D] placeholder:text-[#00293D]/40 focus:outline-none focus:border-[#E58625]"
- />
- toggleShowPassword('confirm')}
- className="absolute right-4 top-1/2 -translate-y-1/2 text-[#00293D]/50 hover:text-[#00293D] cursor-pointer"
- >
- {showPasswords.confirm ? '🙈' : '👁️'}
-
-
-
-