NRI Registered with International Mobile Numbers are need to change Sign-Up Credentials


Fields marked with * are mandatory
OTP IS NOT ENABLED

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); }