FinLends - Loan Services

We would love to hear from you!

Call us at

885 885 99 11

Apply Now & Get Fastest Sanction Offers

ADDRESS

Plot no 7, N B Tower 1st floor,
Above Bank of Baroda, Manish Nagar, Nagpur - 440015

CONTACT

+91 885 885 99 11

loans@finlends.com

SOCIAL

Confused About Which Loan Fits You Best?
Let our experts guide you to the right one.

// ── Form submit → CRM webhook ── $(document).ready(function() { $('#finlendsForm').on('submit', function(e) { e.preventDefault(); var submitBtn = $('#submitBtn'); var msgBox = $('#formMessage'); var form = document.getElementById('finlendsForm'); // Clean amount — strip commas/spaces just in case var amountField = document.getElementById('amount'); if (amountField) { var raw = amountField.value.replace(/[^0-9]/g, '').trim(); amountField.value = raw || ''; } // Pincode validation var pincode = $('[name="pincode"]').val().trim(); if (!/^[1-9][0-9]{5}$/.test(pincode)) { msgBox.html('
Please enter a valid 6-digit Pin Code.
'); return; } submitBtn.prop('disabled', true).text('Submitting...'); msgBox.html(''); fetch('https://finlends.com/loancrm/webhook.php', { method: 'POST', body: new FormData(form) }) .then(function(r) { return r.json(); }) .then(function(res) { if (res.ok) { msgBox.html('
Application received! We will contact you shortly.
'); form.reset(); } else { msgBox.html('
' + (res.error || 'Something went wrong.') + '
'); } }) .catch(function() { msgBox.html('
Connection error. Please try again.
'); }) .finally(function() { submitBtn.prop('disabled', false).text('Get My Loan Offer'); }); }); }); // ── Right click disable ── document.addEventListener('contextmenu', function(e) { e.preventDefault(); });