RWA/GHS/Educational Institution Login SIGN UP


**Form can only be submitted after either mobile or email is verified via OTP
Fields marked with * are mandatory
Cancel

Help Desk

function formatFloat(value, decimals = 2) { // Handle null, undefined, empty, or invalid values if (value === null || value === undefined || value === '' || isNaN(value)) { return '0.00'; } return parseFloat(value).toFixed(decimals); }