First NameLast NameDate Of BirthAgeEmailPhoneMortgage AmountMortgage DateLenderStreet AddressCityStateZipInsurance TypeLead SourceDate SubmittedAssigned Agent
JohnEbert 7644327848011032863/8/2024SHELLPOINT MTG SVCNG9487 Seven Courts DrNottinghamMaryland21236Mortgage Insurance
ALEXANDERRODRIGUEZ 3178635672764392453/22/20241301 FOGGY TURN UNIT 3CROFTONMaryland21114Mortgage Insurance
TammyMann 41093486231600003/11/2024MOVEMENT MORTGAGE LLC112 Evans PlSalisburyMD21804Mortgage Insurance
NIKITAGINYARD 4020287656094163204/2/202417310 CLAIRFIELD LNUPPER MARLBOROMaryland20772Mortgage Insurance
CHRISTINAKENNEDY 4924046268063289323/26/20246035 SURREY SQUARE LNDISTRICT HEIGHTSMaryland20747Mortgage Insurance
MARVINPENDERGRASS 5344372210271505903/14/20241403 MERIDENE DRBALTIMOREMaryland21239Mortgage Insurance
ETIHATUD 4424070629173970003/27/20241676 MINQUA STHAVRE DE GRACEMaryland21078Mortgage Insurance
AndreaFowlkes 4044393169982645504/10/2023PLAINS CMRC BK5006 Oaklyn AveBaltimoreMaryland21206Mortgage Insurance
ABEBEKEBEDE 4526768496631794503/25/2024837 CHESTNUT STHAGERSTOWNMaryland21740Mortgage Insurance
BrendaJones 634432866981350002/13/2024SPRING EQ LLC7880 New Freetown RdPasadenaMaryland21122Mortgage Insurance

Add Personal Leads

Add Personal Lead information

This page is restricted. Please Login / Register to view this page.
jQuery(document).ready(function($) { // Hide all sections initially $(".content-section").hide(); // Show the Dashboard section by default $("#dashboard").show(); // When a menu item is clicked, show the corresponding section $(".icon-list-item").on("click", function(e) { e.preventDefault(); // Prevent default link behavior // Remove any previously applied classes that show sections $("body").removeClass("show-dashboard show-profile show-leads show-clients show-files show-appointments show-settings"); // Get the target section ID from the clicked menu item's href var targetId = $(this).attr("href").substring(1); // Get the section ID from the link (e.g., #dashboard becomes dashboard) // Add the class corresponding to the clicked menu item to the body $("body").addClass("show-" + targetId); // e.g., show-dashboard // Optionally, scroll to the section (smooth scrolling) $('html, body').animate({ scrollTop: $("#" + targetId).offset().top }, 800); }); });