myre360.thinkific.com
Open in
urlscan Pro
2606:4700:4400::6812:239f
Public Scan
Submitted URL: https://www.adonissmartmoney.com/
Effective URL: https://myre360.thinkific.com/courses/smb
Submission: On August 24 via automatic, source certstream-suspicious — Scanned from DE
Effective URL: https://myre360.thinkific.com/courses/smb
Submission: On August 24 via automatic, source certstream-suspicious — Scanned from DE
Form analysis
1 forms found in the DOMPOST /tenant_leads
<form id="new_lead_432764a015" action="/tenant_leads" accept-charset="UTF-8" data-remote="true" method="post">
<input name="utf8" type="hidden" value="β" autocomplete="off"><input type="hidden" name="tenant_lead[page_url]" value="https://myre360.thinkific.com/courses/smb">
<label for="new_lead_432764a015-email" class="form__label"> Email </label>
<input id="new_lead_432764a015-email" type="email" name="tenant_lead[email]" value="" placeholder="Enter your email" autocapitalize="off" autocomplete="off" autocorrect="off" spellcheck="false" required="" aria-required="true" class="form__control"
aria-describedby="new_lead_432764a015-error">
<p aria-live="polite" id="new_lead_432764a015-error" class="form__error-msg hidden" role="alert"> Please enter a valid email address </p>
<div class="form__group">
<div>
<input id="new_lead_432764a015-accept" class="form__group-checkbox" name="accept" type="checkbox" value="y" required="" aria-required="true" aria-describedby="new_lead_432764a015-accept-error">
<label for="new_lead_432764a015-accept" class="form__label--checkbox">Yes please email me more on the Smart Money Blueprint</label>
</div>
<p aria-live="polite" id="new_lead_432764a015-accept-error" class="form__error-msg hidden" role="alert"> Please check this box if you wish to proceed </p>
</div>
<div class="form__group form__button-group">
<input id="new_lead_432764a015-submit-lead" type="submit" value="Submit" class="button button-primary" aria-label="Submit" aria-disabled="true">
<p class="lead-capture__success-msg sr-only">Thank You</p>
<p aria-live="polite" class="lead-capture__error-msg" role="alert"> Oops, something went wrong. Please try again with a different email address. </p>
</div>
<script>
$(function() {
$("#new_lead_432764a015 > input[name='tenant_lead[page_url]']").val(window.location.href)
});
document.getElementById('new_lead_432764a015').addEventListener('thinkific:success', function(event) {
$('#new_lead_432764a015-submit-lead').val("Thank You");
$('#new_lead_432764a015').addClass('lead-capture__success')
$('#new_lead_432764a015 .lead-capture__error-msg').hide();
$('#new_lead_432764a015 .lead-capture__success-msg').show();
setTimeout(function() {
$('#new_lead_432764a015-submit-lead').val('Submit');
$('#new_lead_432764a015').removeClass('lead-capture__success')
$('#new_lead_432764a015')[0].reset();
$('#new_lead_432764a015-submit-lead').attr('aria-disabled', 'true');
}, 6000);
})
document.getElementById('new_lead_432764a015').addEventListener('thinkific:error', function(event) {
$('#new_lead_432764a015 .lead-capture__error-msg').show();
$('#new_lead_432764a015 .lead-capture__success-msg').hide();
})
$('#new_lead_432764a015-accept').on('click', function() {
if ($('#new_lead_432764a015-accept').is(':checked')) {
$('#new_lead_432764a015-submit-lead').removeAttr('aria-disabled');
} else {
$('#new_lead_432764a015-submit-lead').attr('aria-disabled', 'true');
}
});
</script>
<script>
function addErrorMsg(fieldId, errorId) {
fieldId.addClass('input--error');
fieldId.attr("aria-invalid", "true");
errorId.removeClass('hidden');
}
function removeErrorMsg(fieldId, errorId) {
fieldId.removeClass('input--error');
fieldId.attr("aria-invalid", "false");
errorId.addClass('hidden');
}
var regex = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
var $email = $('#user\\[email\\]');
var $emailError = $('#user\\[email\\]-error')
$email.on('focusout', function() {
if (!regex.test($email.val())) {
addErrorMsg($email, $emailError);
} else {
removeErrorMsg($email, $emailError);
}
});
var $leadCapture = $('#new_lead_432764a015-email')
var $leadCaptureError = $('#new_lead_432764a015-error')
$leadCapture.on('focusout', function() {
if (!regex.test($leadCapture.val())) {
addErrorMsg($leadCapture, $leadCaptureError);
} else {
removeErrorMsg($leadCapture, $leadCaptureError);
}
});
var $leadCaptureCheckbox = $('#new_lead_432764a015-accept');
var $leadCaptureCheckboxError = $('#new_lead_432764a015-accept-error');
$leadCaptureCheckbox.on('focusout', function() {
if (!$leadCaptureCheckbox.is(':checked')) {
addErrorMsg($leadCaptureCheckbox, $leadCaptureCheckboxError);
} else {
removeErrorMsg($leadCaptureCheckbox, $leadCaptureCheckboxError);
}
});
var $password = $('#user\\[password\\]');
var $passwordError = $('#user\\[password\\]-error')
$password.on('focusout', function() {
if ($password.val().length < 1) {
addErrorMsg($password, $passwordError);
} else {
removeErrorMsg($password, $passwordError);
}
});
var $firstName = $('#user\\[first_name\\]');
var $firstNameError = $('#user\\[first_name\\]-error');
$firstName.on('focusout', function() {
if ($firstName.val() === '') {
addErrorMsg($firstName, $firstNameError);
} else {
removeErrorMsg($firstName, $firstNameError);
}
});
var $lastName = $('#user\\[last_name\\]');
var $lastNameError = $('#user\\[last_name\\]-error');
$lastName.on('focusout', function() {
if ($lastName.val() === '') {
addErrorMsg($lastName, $lastNameError);
} else {
removeErrorMsg($lastName, $lastNameError);
}
});
var $checkbox = $('#user\\[terms\\]');
var $checkboxError = $('#user\\[terms\\]-error');
$checkbox.on('focusout', function() {
if (!$checkbox.is(':checked')) {
addErrorMsg($checkbox, $checkboxError);
} else {
removeErrorMsg($checkbox, $checkboxError);
}
});
var $file = $('.my-account__avatar-label');
$file.on('change', function() {
$file.append('<p aria-live="polite" id="my-account__avatar--error" class="sr-only" role="alert">liquid.partials.form.file_changed</p>')
});
var $select = $('.custom-select');
var $selectError = $('#custom-select-error')
$select.on('focusout', function() {
if ($(this).prop('required')) {
if (!$select.val()) {
addErrorMsg($select, $selectError);
} else {
removeErrorMsg($select, $selectError);
}
}
});
var $customField = $('.custom-field');
var $customFieldError = $('#custom-field-error');
$customField.on('focusout', function() {
if ($(this).prop('required')) {
if ($customField.val() === '') {
addErrorMsg($customField, $customFieldError);
} else {
removeErrorMsg($customField, $customFieldError);
}
}
});
</script>
</form>
Text Content
Skip to main content MYRE360 Toggle menu Menu * Need a Mentor? * Sign In * Enroll Now ONE CLOSING, TWICE THE COMMISSIONS: MAKE MONEY BY BROKERING PRIVATE & HARD MONEY Ever wondered what truly sets successful real estate investors/agents/LOs/wholesalers apart? Itβs not just about the properties; itβs about mastering the art of brokering money. Most real estate investors are looking for more lending options and private money sources to fund their investment deals. Smart Money Blueprint will teach you how to profit by brokering funds, revealing the most creative yet best-kept secret in the industry. When you control the money, you become the most valuable player in any real estate transaction. Register for Free to Get Started Schedule a Consultation Watch Intro Video BECOME THE ULTIMATE FINANCIAL INFLUENCER AND START SELLING MONEY * $995.00 Online course access only Get Started * $9,995.00 Course, mentorship, mastermind Get Started WHO IS THIS FOR? No license required, no walking houses, no signing contracts, no money required. Is the Smart Money Blueprint right for you? * INVESTOR/WHOLESALER How many investor buyers have you referred to lenders? Whether you've closed deals with them or know someone who has, did you get paid for those referrals? With Smart Money Blueprint, you can learn how to earn commissions by brokering funds for real estate investments. Transform your referrals into revenue and elevate your investing strategy. * LOAN OFFICERS Struggling to close deals with your current programs? Need better financing options for your investor clients? Tired of making referrals and not getting compensated? With Smart Money Blueprint, you can learn how to earn commissions by brokering funds for real estate investments. Enhance your services and start getting paid for your referrals today. * REALTORS/BROKERS If you work with investors, you know how crucial the right lender can be. Want to help your clients secure more deals and close more business with you? Looking to create an additional income stream? With Smart Money Blueprint, you can learn how to broker funds for real estate investments, empowering your clients and growing your business. Start maximizing your potential today. Learn More JOIN THE MASTERMIND The Smart Money Blueprint Mastermind Group meets bi-weekly to discuss strategies, and different techniques that are proven to be effective. You will hear from coaches, students, and contributors on the best way to streamline efforts, make your operation more efficient, and grow your business in the most effective way possible. Remove the trouble of trial and error by learning from members with years of experience, and from dozens of experts who meet to discuss best practices. You have access to it all! Enrollments for 2024 are open, but seats are limited. Register Here WHAT PAST STUDENTS ARE SAYING... 5 star rating PERFECT FOR BEGINNERS! STACY ROCKDASCHEL I just finished module one and have already learned so much about private money lenders, qualifications to getting funds, and building relationships in the real estate industry. I just finished module one and have already learned so much about private money lenders, qualifications to getting funds, and building relationships in the real estate industry. Read Less 5 star rating RELATIONSHIPS ARE KING! SENECA DUNMORE I always say, "the quickest pathway to financial capital is SOCIAL CAPITAL!" I always say, "the quickest pathway to financial capital is SOCIAL CAPITAL!" Read Less 5 star rating AWESOME CLASS VICTOR TOLBERT This course is amazing and eye opening to the industry and hack π to help grow business. Big thanks This course is amazing and eye opening to the industry and hack π to help grow business. Big thanks Read Less 5 star rating SMART MONEY REVIEW NATHAN GAUDETTE Chapter one and two were very straight forward and educational. I am looking forward to the coming chapters and expanding my knowledge Chapter one and two were very straight forward and educational. I am looking forward to the coming chapters and expanding my knowledge Read Less 5 star rating 10/10 RECOMMEND JOSEF JOHNSON Wow where do I start? Let's just say if you are looking to get into the hard/private money space you need to make the investment of this course ASAP. Whether you're looking to invest using hard/private money, or learn how to sell it like myself, i... Read More Wow where do I start? Let's just say if you are looking to get into the hard/private money space you need to make the investment of this course ASAP. Whether you're looking to invest using hard/private money, or learn how to sell it like myself, its worth every penny. So much knowledge and so many gems dropped that you will not find anywhere else. 10/10 recommend, I'm about do dominate this private sector. Read Less 5 star rating UNDERSTANDING PRIVATE MONEY DERRICK MOULTRIE This course is an in depth look at the world of private money. During this course the wheels in my head began to turn as i began picturing how i want to form, structure , and scale my private money enterprise. This is for anyone who is serious abo... Read More This course is an in depth look at the world of private money. During this course the wheels in my head began to turn as i began picturing how i want to form, structure , and scale my private money enterprise. This is for anyone who is serious about shifting the paradigm in their life. Read Less 5 star rating EARNING ADDITIONAL INCOME IN MY RE BUSINESS MADE EASY LAUREN LOCKETT As a licensed realtor, I didn't realize the money I left on the table each time I worked with a RE investor. For the same work that I would do anyway, I have now created a supplemental business to add extra income to each one of my investor closin... Read More As a licensed realtor, I didn't realize the money I left on the table each time I worked with a RE investor. For the same work that I would do anyway, I have now created a supplemental business to add extra income to each one of my investor closings by following the Smart Money Blueprint. Additionally, I know my clients are going to receive excellent service, I provide more value by understanding how to manage investment transactions, and I have more control over the outcome of the financing instead of it being a black box that I hope works in our favor. The Smart Money Blueprint has transformed the way I do business. Read Less 5 star rating PERFECT FOR BEGINNERS! STACY ROCKDASCHEL I just finished module one and have already learned so much about private money lenders, qualifications to getting funds, and building relationships in the real estate industry. I just finished module one and have already learned so much about private money lenders, qualifications to getting funds, and building relationships in the real estate industry. Read Less 5 star rating RELATIONSHIPS ARE KING! SENECA DUNMORE I always say, "the quickest pathway to financial capital is SOCIAL CAPITAL!" I always say, "the quickest pathway to financial capital is SOCIAL CAPITAL!" Read Less 5 star rating AWESOME CLASS VICTOR TOLBERT This course is amazing and eye opening to the industry and hack π to help grow business. Big thanks This course is amazing and eye opening to the industry and hack π to help grow business. Big thanks Read Less 5 star rating SMART MONEY REVIEW NATHAN GAUDETTE Chapter one and two were very straight forward and educational. I am looking forward to the coming chapters and expanding my knowledge Chapter one and two were very straight forward and educational. I am looking forward to the coming chapters and expanding my knowledge Read Less 5 star rating 10/10 RECOMMEND JOSEF JOHNSON Wow where do I start? Let's just say if you are looking to get into the hard/private money space you need to make the investment of this course ASAP. Whether you're looking to invest using hard/private money, or learn how to sell it like myself, i... Read More Wow where do I start? Let's just say if you are looking to get into the hard/private money space you need to make the investment of this course ASAP. Whether you're looking to invest using hard/private money, or learn how to sell it like myself, its worth every penny. So much knowledge and so many gems dropped that you will not find anywhere else. 10/10 recommend, I'm about do dominate this private sector. Read Less 5 star rating UNDERSTANDING PRIVATE MONEY DERRICK MOULTRIE This course is an in depth look at the world of private money. During this course the wheels in my head began to turn as i began picturing how i want to form, structure , and scale my private money enterprise. This is for anyone who is serious abo... Read More This course is an in depth look at the world of private money. During this course the wheels in my head began to turn as i began picturing how i want to form, structure , and scale my private money enterprise. This is for anyone who is serious about shifting the paradigm in their life. Read Less 5 star rating EARNING ADDITIONAL INCOME IN MY RE BUSINESS MADE EASY LAUREN LOCKETT As a licensed realtor, I didn't realize the money I left on the table each time I worked with a RE investor. For the same work that I would do anyway, I have now created a supplemental business to add extra income to each one of my investor closin... Read More As a licensed realtor, I didn't realize the money I left on the table each time I worked with a RE investor. For the same work that I would do anyway, I have now created a supplemental business to add extra income to each one of my investor closings by following the Smart Money Blueprint. Additionally, I know my clients are going to receive excellent service, I provide more value by understanding how to manage investment transactions, and I have more control over the outcome of the financing instead of it being a black box that I hope works in our favor. The Smart Money Blueprint has transformed the way I do business. Read Less 5 star rating PERFECT FOR BEGINNERS! STACY ROCKDASCHEL I just finished module one and have already learned so much about private money lenders, qualifications to getting funds, and building relationships in the real estate industry. I just finished module one and have already learned so much about private money lenders, qualifications to getting funds, and building relationships in the real estate industry. Read Less NEED HELP WITH FINANCING? Our goal is to make your transition into real estate investing as simple as possible. Don't bankrupt your savings while trying to empower yourself to do something greater. Get financing for your Smart Money Blueprint education, and leverage our money to help grow your business. Request Financing Here THE SMART MONEY BLUEPRINT Discover the Most Creative Secret to Become the Most Valuable Player in Real Estate Transactions. We're confident you'll love the Smart Money Blueprint. If you're not satisfied within 7 days, we offer a full refund, no questions asked. * In-Depth Modules: Comprehensive modules covering every aspect of selling money in real estate. * Creative Strategies: Learn the most creative approaches to making money by selling money. * Becoming Invaluable: Discover how being the money source makes you the most valuable person in any real estate transaction. * Expert Guidance: Learn from industry experts with a proven track record. * Exclusive Techniques: Unlock exclusive techniques that will set you apart in the industry. COURSE CURRICULUM 1. START HERE IF YOU'RE NEW a. Mastermind Call FREE PREVIEW 2. VOLUME 1 CHAPTER 1: OVERVIEW a. What is Private and Hard Money? FREE PREVIEW b. Ch 1 Module 1 Quiz FREE PREVIEW c. Benefits of Leveraging Private & Hard Money Loans FREE PREVIEW d. Ch 1 Module 2 Quiz FREE PREVIEW e. The Power of Relationships with your Private Money Lenders FREE PREVIEW f. Ch 1 Module 3 Quiz FREE PREVIEW 3. CHAPTER 2: BEFORE YOU GET STARTED a. Download the Smart Money Blueprint Successful Student Guide! b. Debunking Myths c. Ch 2 Module 1 Quiz d. Basic Terminology, Acronyms and Definitions e. Ch 2 Module 2 Quiz f. Expectations When Borrowing Private Money g. Ch 2 Module 3 Quiz h. Am I Approved? Factors that Drive Terms, Leverage, and Approval i. Ch 2 Module 4 Quiz j. Cash Transactions vs. Leveraging Private Money k. Local vs National Private Money lenders l. Chapter 2 Quiz m. New Student Survey 4. CHAPTER 3: THE LOAN PROCESS a. Standard Documents Required for a Private Money Loan b. Ch 3 Module 1 Quiz c. Soft Costs: How it Impacts Your Rehab Budget d. Ch 3 Module 2 Quiz e. Appraisals: How it impacts your loan f. Ch 3 Module 3 Quiz g. Importance of your Schedule of Real Estate owned / Experience h. Ch 3 Module 4 Quiz i. How to Properly Calculate Your Out-of-Pocket Costs j. Ch 3 Module 5 Quiz k. How to Properly Document Your Rehab Scope / Construction Budget l. Ch 3 Module 6 Quiz m. Functions and Roles in the Lending Process n. Chapter 3 Quiz 5. CHAPTER 4: LOAN PROGRAMS a. Bridge Loans: Everything You need to know b. Ch 4 Module 1 Quiz c. Fix & Flip Loans: Everything you need to know d. Ch 4 Module 2 Quiz e. AirBnB loans: Everything You Need to Know f. Ch 4 Module 3 Quiz g. Long Term Rental Loans: Everything You Need to Know h. Ch 4 Module 4 Quiz i. New Construction: Everything You Need to Know j. Ch 4 Module 5 Quiz k. Raw Land & Development: Everything you need to know l. Chapter 4 Quiz 6. CHAPTER 5: AFTER THE LOAN IS FUNDED a. Creatively structuring your exit refinance b. Ch 5 Module 1 Quiz c. Balancing Money Out Versus Money In d. Ch 5 Module 2 Quiz e. Understanding the Draw Process f. Chapter 5 Quiz 7. CHAPTER 6: HACKING THE MONEY a. Smart Money β What is it and How to Apply it b. Ch 6 Module 1 Quiz c. LNH Capital Loan Programs FREE PREVIEW d. Be OK Withβ¦β¦ e. The Truth about Private Money: Behind the Scenes f. Volume 2 Preview: How to Hack Private Money to start, grow and scale your real estate investing business g. Chapter 6 Quiz 8. VOLUME 1 CHAPTER 7: CONCLUSION a. Final Thoughts 9. MIDTERM a. Midterm Announcement b. Register Your Business with LNH Capital 10. VOLUME 2 CHAPTER 1: OVERVIEW a. Overview b. Do Your Research c. Vol 2 Mod 2 Quiz d. Create Your Identity e. Vol 2 Mod 3 Quiz f. Your Moral Compass g. Vol 2 Mod 4 Quiz 11. CHAPTER 2: SET UP THE BUSINESS a. Establishing Your Business b. Ch 2 Mod 5 Quiz c. Legitimize Your Operation d. Ch 2 Mod 6 Quiz 12. CHAPTER 3: TAP IN a. Know Your Market b. Ch 3 Mod 7 Quiz c. Know Your Product d. Ch 3 Mod 8 Quiz e. Know the Lenders Process f. Ch 3 Mod 9 Quiz 13. CHAPTER 4: CREATE YOUR PLAN OF ACTION a. Mapping It Out b. Ch 4 Mod 10 Quiz c. Get the Tools to Manage the Business d. Ch 4 Mod 11 Quiz e. Set Your Goal f. Ch 4 Mod 12 Quiz g. Create a Specific Marketing Plan h. Ch 4 Mod 13 Quiz 14. CHAPTER 5: MANAGING INCOMING BUSINESS a. Understand Conversion b. Ch 5 Mod 14 Quiz c. Housing Deals & Managing Pipeline d. Ch 5 Mod 15 Quiz e. Consistency in Communication f. Ch 5 Mod 16 Quiz 15. CHAPTER 6: APPLYING WHAT YOU'VE LEARNED a. Commit to a Goal b. Ch 6 Mod 17 Quiz c. Perfect the Process d. Ch 6 Mod 18 Quiz e. Grow the Business f. Ch 6 Mod 19 Quiz g. Scale the Operation h. Ch 6 Mod 20 Quiz i. Create Your Own j. Ch Mod 21 Quiz 16. CHAPTER 7: CONTROLLING THE CONVERSATION a. Inquire and Understand b. Present Your Value Show more ABOUT THIS COURSE -------------------------------------------------------------------------------- * 105 lessons * 19.5 hours of video content * Dedicated coaching * Weekly mastermind calls * Support to help close your first 10 transactions LEARN HOW REAL ESTATE DEALS ARE REALLY FUNDED The Smart Money Blueprint is an innovative and all inclusive education program, with a step by step guide on how to capitalize on the interactions between investors and private and/or hard money lenders. In other words, the Smart Money Blueprint will teach you how to make money selling money. * VOLUME 1: EVERYTHING YOU NEED TO KNOW ABOUT PRIVATE MONEY LOANS In this series you will learn everything you need to know about Private Loans and Hard Money lending. You will learn definitions, terminology, and key phrases. You will learn what to expect when dealing with investors and Private Money Lenders. You will also be introduced to the different loan programs, the people behind the scenes, how the Real Estate lending industry actually works.... and all of it's secrets! * VOLUME 2: HOW TO MAKE MONEY SELLING MONEY In this series, you will take everything you have learned and apply it so you can start making money. You will know how to properly structure your business, implement the most lucrative marketing strategies the industries best sales people use to close millions of dollars a year, and how to run the entire operation with automation doing most of the work for you. * VOLUME 3: HACKING MONEY TO START & SCALE YOUR PERSONAL PORTFOLIO In this series you will take all the different strategies used in the way you sell money, to build your own personal portfolio utilizing the trips, tricks and secrets you have learned. You will also learn how to structure the loan to walk into the perfect deal every time. And finally, you will take all the strategies learned from the investors you have funded, and apply it to scaling your own multi million dollar rental portfolio. KNOW THE MONEY, CONTROL THE MONEY No need to fake it until you make it. The Smart Money Blueprint is your ultimate guide to learning how real estate investing really works. * Learn how to 10x your real estate business by leveraging debt for your acquisitions * Become an expert on your loan! Learn the terms and definitions, factors diving approval, docs required and what impacts your numbers * Master your rehab/construction budget and know how to properly manage your rehab funds * Understand the loan process and how soft costs and appraisals can impact your loan amounts * Detailed breakdown of 6 major loan programs and everything you need to know to navigate them * Preview into Volume 2 - Make Money Selling Money READY TO LEARN MORE? Add your email to the mailing list to get the latest updates. Email Please enter a valid email address Yes please email me more on the Smart Money Blueprint Please check this box if you wish to proceed Thank You Oops, something went wrong. Please try again with a different email address. * All Courses * My Re360 Facebook Page (Open in a new window) * My Re360 Instagram Page (Open in a new window) * My Re360 YouTube Channel (Open in a new window) Β© Copyright myRE360 2024 Teach online with Thinkific Open in a new window Hey there! Click Here to start texting us! π