Back

LSBC Student Payment Portal

The LSBC Student Payment Portal offers students the convenience of making their payments online directly to LSBC. The platform accepts [VISA, MasterCard, and Maestro, etc. card options].

To proceed with a payment, simply fill in the details on the form below. Please ensure accuracy when entering your student number, the amount, and the currency (which should match the quoted currency of your programme fees) to ensure smooth processing.

Upon submission, you will be directed to a secure portal to finalise your payment.

Upon successful payment, a receipt will be sent to your email address to confirm the transaction.

All data will be handled by LSBC’s privacy policy.

Thank you.

/** * Calculate age based on date of birth date picker field * * @link https://wpforms.com/developers/how-to-display-the-age-from-a-date-picker-field/ */ function wpf_dev_check_age() { ?> const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } );