Due to a rise in job scam cases, we strongly encourage you to Quick Verify the identity of any BGC Group consultant before sharing personal information. Use our official verification tool here:👉 https://wecare.bgc-group.com/verifyme
While platforms like WhatsApp, LinkedIn, and Telegram are convenient, they are also easy for scammers to exploit and impersonate our recruiters.
How to Verify a BGC Recruiter:
Ask the recruiter for their official BGC email address. All genuine BGC employees have one.
All BGC Group recruiters’ email will look like this: [name]@bgc-group.com
Go to the Quick Verify page and enter their BGC email.
A one-time verification code will be generated and sent:
To you (on the screen)
To the recruiter’s BGC email.
Ask the recruiter to provide the exact same code.
If they can, they’re verified. If not, they may be impersonating BGC.
Important Reminders:
We will never ask for payment or fees at any stage of recruitment.
Always verify a consultant before sharing personal information.
We adhere strictly to Singapore’s PDPA guidelines in all our hiring practices.
For more information on how to spot a job scam and how to avoid them, read our guide for more information.
Get In Touch With Us On WhatsApp Today!
// 1. Get all the necessary elements
const switchInput = document.getElementById('sectionstatus');
const corporateButtons = document.querySelector('.corporate-buttons');
const candidateButtonWrapper = document.querySelector('.candidate-button-wrapper');
const forCorporateSpan = document.getElementById('forcorporate');
const forCandidateSpan = document.getElementById('forcandidate');
// 2. Define the function that runs when the switch changes
function toggleSections() {
// 'checked' is TRUE when the switch is toggled to the 'For Candidate' side
const isCandidate = switchInput.checked;
if (isCandidate) {
// CANDIDATE VIEW: Show Candidate, Hide Corporate
candidateButtonWrapper.classList.remove('hidden');
corporateButtons.classList.add('hidden');
// Apply highlight styles
forCandidateSpan.classList.add('bold');
forCorporateSpan.classList.remove('bold');
} else {
// CORPORATE VIEW: Show Corporate, Hide Candidate
corporateButtons.classList.remove('hidden');
candidateButtonWrapper.classList.add('hidden');
// Apply highlight styles (Corporate is default)
forCorporateSpan.classList.add('bold');
forCandidateSpan.classList.remove('bold');
}
}
// 3. Attach the function to the switch's 'change' event
if (switchInput) {
switchInput.addEventListener('change', toggleSections);
// 4. Run once on page load to ensure the initial state is correct (Corporate is default)
toggleSections();
}