top of page

Choose your pricing plan

  • Certified Leasing Fundamentals Training

    9.99$
    Includes full leasing training video, downloadable leasing toolkit forms, and certificate of completion.
    Valid for 12 months
    • Leasing office scripts and training templates
    • Real leasing office forms and checklists
    • Certificate of Completion
bottom of page
// Disable Right Click document.addEventListener('contextmenu', event => event.preventDefault()); // Disable Text Selection document.addEventListener('selectstart', event => event.preventDefault()); // Disable Keyboard Copy (Ctrl+C), Cut (Ctrl+X), Paste (Ctrl+V) document.addEventListener('keydown', function(event) { if (event.ctrlKey && (event.key === 'c' || event.key === 'x' || event.key === 'v')) { event.preventDefault(); } });