www.mycreditreadyplan.com Open in urlscan Pro
54.243.250.147  Public Scan

Submitted URL: http://mydiycreditreadyplan.com/
Effective URL: https://www.mycreditreadyplan.com/courses/my-credit-ready-plan
Submission: On June 02 via api from US — Scanned from DE

Form analysis 1 forms found in the DOM

POST /tenant_leads

<form id="new_lead_107cd6e6cd" action="/tenant_leads" accept-charset="UTF-8" data-remote="true" method="post" ps-dynamic-form-id="0072e2d8-1533-4360-b97e-59b5c1533950">
  <input name="utf8" type="hidden" value="✓" autocomplete="off"><input type="hidden" name="tenant_lead[page_url]" value="https://www.mycreditreadyplan.com/courses/my-credit-ready-plan">
  <label for="new_lead_107cd6e6cd-email" class="form__label"> Email </label>
  <input id="new_lead_107cd6e6cd-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_107cd6e6cd-error" ps-email-field-id="42996bb7-8d75-4aca-9088-d82614a8a790">
  <p aria-live="polite" id="new_lead_107cd6e6cd-error" class="form__error-msg hidden" role="alert"> Please enter a valid email address </p>
  <div class="form__group">
    <div>
      <input id="new_lead_107cd6e6cd-accept" class="form__group-checkbox" name="accept" type="checkbox" value="y" required="" aria-required="true" aria-describedby="new_lead_107cd6e6cd-accept-error">
      <label for="new_lead_107cd6e6cd-accept" class="form__label--checkbox">Yes please, save my details so you can send me educational content that is relevant and helpful.</label>
    </div>
    <p aria-live="polite" id="new_lead_107cd6e6cd-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_107cd6e6cd-submit-lead" type="submit" value="Submit" class="button button-primary" aria-label="Submit" aria-disabled="true" ps-submit-button-id="303cb9d3-241c-46ea-bae1-02c7c6b37d73">
    <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_107cd6e6cd > input[name='tenant_lead[page_url]']").val(window.location.href)
    });
    document.getElementById('new_lead_107cd6e6cd').addEventListener('thinkific:success', function(event) {
      $('#new_lead_107cd6e6cd-submit-lead').val("Thank You");
      $('#new_lead_107cd6e6cd').addClass('lead-capture__success')
      $('#new_lead_107cd6e6cd .lead-capture__error-msg').hide();
      $('#new_lead_107cd6e6cd .lead-capture__success-msg').show();
      setTimeout(function() {
        $('#new_lead_107cd6e6cd-submit-lead').val('Submit');
        $('#new_lead_107cd6e6cd').removeClass('lead-capture__success')
        $('#new_lead_107cd6e6cd')[0].reset();
        $('#new_lead_107cd6e6cd-submit-lead').attr('aria-disabled', 'true');
      }, 6000);
    })
    document.getElementById('new_lead_107cd6e6cd').addEventListener('thinkific:error', function(event) {
      $('#new_lead_107cd6e6cd .lead-capture__error-msg').show();
      $('#new_lead_107cd6e6cd .lead-capture__success-msg').hide();
    })
    $('#new_lead_107cd6e6cd-accept').on('click', function() {
      if ($('#new_lead_107cd6e6cd-accept').is(':checked')) {
        $('#new_lead_107cd6e6cd-submit-lead').removeAttr('aria-disabled');
      } else {
        $('#new_lead_107cd6e6cd-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_107cd6e6cd-email')
    var $leadCaptureError = $('#new_lead_107cd6e6cd-error')
    $leadCapture.on('focusout', function() {
      if (!regex.test($leadCapture.val())) {
        addErrorMsg($leadCapture, $leadCaptureError);
      } else {
        removeErrorMsg($leadCapture, $leadCaptureError);
      }
    });
    var $leadCaptureCheckbox = $('#new_lead_107cd6e6cd-accept');
    var $leadCaptureCheckboxError = $('#new_lead_107cd6e6cd-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


MY CREDIT READY PLAN

Toggle menu Menu
 * Partner With Us
 * All Courses
 * Sign In
 * Start Now


YOUR DO IT YOURSELF CREDIT READY PLAN

Educational courses and a member community built to help you get credit ready
for life.

Get Started


EVERYTHING YOU NEED TO START BUILDING HEALTHY CREDIT

Have you ever wished that credit health was taught in school? We certainly have.
That's why we created My Credit Ready Plan. Our mission is to bridge the
education gap and provide the knowledge and resources needed to build, protect,
and grow your credit health.

Start Now


QUALITY EDUCATION & ACTION PLANS

Built to help you build, protect, and grow your credit.


 * INSTRUCTIONAL VIDEOS
   
   Engaging Content
   
   With each stage of this course, you'll have guided instructional videos
   helping to explain the content, and how you can leverage it to build healthy
   credit.


 * AUDIO GUIDED PRESENTATIONS
   
   Easy To Understand
   
   Each lesson has audio guided presentations to help explain the subject matter
   in a way that helps you take action.


 * DOWNLOADABLE TEMPLATES
   
   Simple To Execute
   
   Each stage provides downloadable templates that include action plans, dispute
   letters, and stage summaries to help you stay on track to get credit ready.





YOUR MEMBERSHIP TO HEALTHY CREDIT

Leverage our educational courses to build healthy credit, and benefit from a
lifetime membership to our Member Community, which offers an array of benefits
such as webinars, live events, new educational series, and more.


 1.  INTRODUCTION TO MY CREDIT READY PLAN


 2.  STAGE ONE: BUILDING A FOUNDATION OF HEALTHY CREDIT


 3.  S.1. LESSON #1: HOW DOES CREDIT WORK?


 4.  S.1.LESSON #2: BUILDING A HEALTHY RELATIONSHIP WITH YOUR CREDIT


 5.  S.1.LESSON #3: BUILDING A HEALTHY FOUNDATION OF CREDIT


 6.  STAGE ONE COMPLETION


 7.  STAGE TWO: DISPUTING INFORMATION WITH THE CREDIT BUREAUS


 8.  S.2. LESSON #1: WHAT IS THE DISPUTE PROCESS AND HOW DOES IT WORK?


 9.  S.2. LESSON #2: HOW TO DISPUTE AN ACCOUNT WITH THE CREDIT BUREAUS


 10. S.2. LESSON #3: WHEN TO RE-DISPUTE AN ACCOUNT WITH THE CREDIT BUREAUS


 11. STAGE TWO COMPLETION


 12. STAGE THREE: VALIDATION AND RESOLUTION


 13. S.3. LESSON #1: AN INTRO TO VALIDATING ACCOUNTS AND CREDITOR NEGOTIATIONS


 14. S.3. LESSON #2: HOW TO VALIDATE AN ACCOUNT WITH YOUR CREDITOR


 15. S.3. LESSON #3: HOW TO NEGOTIATE AN ACCOUNT WITH YOUR CREDITOR


 16. STAGE THREE COMPLETION


 17. STAGE FOUR: HOW TO OPTIMIZE YOUR CREDIT FOR THE FUTURE


 18. S.4. LESSON #1: OPTIMIZING YOUR CREDIT SCORE


 19. S.4. LESSON #2: HOW TO PREPARE TO QUALIFY FOR AN UPCOMING LOAN


 20. S.4. LESSON #3: HOW TO PROTECT YOUR CREDIT HEALTH WITH FREEZING OR LOCKING
     YOUR CREDIT PROFILE


 21. STAGE FOUR COMPLETION


 22. YOUR MEMBERSHIP IN MY CREDIT READY PLAN

Show more


MEMBERSHIP INCLUDES

--------------------------------------------------------------------------------

 * $99.00
 * 28 lessons
 * Building Healthy Credit
 * Disputing FCRA Violations
 * Resolving Derogatory Accounts


WHAT'S INCLUDED?

As a My Credit Ready Member, you receive more than just education.

 * Access our Member Community for free resources, feedback from other members,
   and more.

 * Join our Monthly Webinar Series for tools, resources, and ideas on how you
   can maintain a healthy credit profile.

 * Get access to exclusive discounts from trusted providers within your My
   Credit Ready Plan.


WANT FREE CREDIT EDUCATION DELIVERED TO YOUR INBOX?

Add your email to the mailing list to get the latest updates.

Email

Please enter a valid email address

Yes please, save my details so you can send me educational content that is
relevant and helpful.

Please check this box if you wish to proceed

Thank You

Oops, something went wrong. Please try again with a different email address.

 * Home
 * All Courses

 * 

© Copyright My Credit Ready Plan 2023




Steve
purchased the course My DIY Credit Ready Plan
14 hours ago
ProveSource