charliette-s-site.thinkific.com Open in urlscan Pro
2606:4700::6812:1e85  Public Scan

Submitted URL: https://creditnottaughtinschools.com/
Effective URL: https://charliette-s-site.thinkific.com/courses/creditsecretsauce
Submission: On August 17 via automatic, source certstream-suspicious — Scanned from CA

Form analysis 1 forms found in the DOM

POST /tenant_leads

<form id="new_lead_cb89018af9" 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://charliette-s-site.thinkific.com/courses/creditsecretsauce">
  <label for="new_lead_cb89018af9-email" class="form__label"> Email </label>
  <input id="new_lead_cb89018af9-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_cb89018af9-error">
  <p aria-live="polite" id="new_lead_cb89018af9-error" class="form__error-msg hidden" role="alert"> Please enter a valid email address </p>
  <div class="form__group">
    <div>
      <input id="new_lead_cb89018af9-accept" class="form__group-checkbox" name="accept" type="checkbox" value="y" required="" aria-required="true" aria-describedby="new_lead_cb89018af9-accept-error">
      <label for="new_lead_cb89018af9-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_cb89018af9-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_cb89018af9-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_cb89018af9 > input[name='tenant_lead[page_url]']").val(window.location.href)
    });
    document.getElementById('new_lead_cb89018af9').addEventListener('thinkific:success', function(event) {
      $('#new_lead_cb89018af9-submit-lead').val("Thank You");
      $('#new_lead_cb89018af9').addClass('lead-capture__success')
      $('#new_lead_cb89018af9 .lead-capture__error-msg').hide();
      $('#new_lead_cb89018af9 .lead-capture__success-msg').show();
      setTimeout(function() {
        $('#new_lead_cb89018af9-submit-lead').val('Submit');
        $('#new_lead_cb89018af9').removeClass('lead-capture__success')
        $('#new_lead_cb89018af9')[0].reset();
        $('#new_lead_cb89018af9-submit-lead').attr('aria-disabled', 'true');
      }, 6000);
    })
    document.getElementById('new_lead_cb89018af9').addEventListener('thinkific:error', function(event) {
      $('#new_lead_cb89018af9 .lead-capture__error-msg').show();
      $('#new_lead_cb89018af9 .lead-capture__success-msg').hide();
    })
    $('#new_lead_cb89018af9-accept').on('click', function() {
      if ($('#new_lead_cb89018af9-accept').is(':checked')) {
        $('#new_lead_cb89018af9-submit-lead').removeAttr('aria-disabled');
      } else {
        $('#new_lead_cb89018af9-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_cb89018af9-email')
    var $leadCaptureError = $('#new_lead_cb89018af9-error')
    $leadCapture.on('focusout', function() {
      if (!regex.test($leadCapture.val())) {
        addErrorMsg($leadCapture, $leadCaptureError);
      } else {
        removeErrorMsg($leadCapture, $leadCaptureError);
      }
    });
    var $leadCaptureCheckbox = $('#new_lead_cb89018af9-accept');
    var $leadCaptureCheckboxError = $('#new_lead_cb89018af9-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


CREDIT NOT TAUGHT IN SCHOOLS

Toggle menu Menu
 * All Products
 * Sign In


CREDIT SECRET SAUCE

Helping startups gain access to MASSIVE capital WITHOUT spending years trying to
figure it out on your own, leveraging other people’s money. Tools and resources
to debunk myths, avoid credit scams and break generational wealth curses.

Enroll for free
Watch Intro Video


WHAT YOU GET

Roadmap to overcoming credit challenges to obtain capital for newbies and 9 to
5'rs. Whether it’s developing an online course or starting a consulting
business, in this course you will learn how to …


 * PART 1 - AWARENESS
   
   Know exactly where you stand with your credit and your debt. How to get
   imperfections off your credit report without overwhelm. Most common credit
   scams and how to avoid them.


 * PART 2 - BUILDING
   
   Debt-free credit-building strategies and tools. Financial apps for kids and
   teens. Credit and financial book resources. Cyber security credit tips.


 * PART 3 - RECOVERY AND STRATEGY
   
   How to structure your business to get the maximum amount of funding possible.
   A top secret strategy to increase your credit score by 100+ points, quickly.
   Marketing and scaling your new business on social media, with little to no
   following or presence.


INSTRUCTOR


CHARLIETTE CUMMINGS

EDUCATOR/FOUNDER

support@creditnottaughtinschools.com
Founder/Educator of "Credit Not Taught In Schools LLC" a community designed to
educate 9 to 5'ers on how to overcome credit challenges to gain access to
capital, and start businesses without overwhelm while avoiding credit scams. A
positive and uplifting community for Americans, with no shaming or judgment to
discuss credit, finances, or business/start-up ideas. Providing the necessary
tools, resources and strategies to assist in leveling up your credit and helping
build generational wealth at the same time. Charliette spent the majority of her
career in Software Development for various large organizations. She has a
bachelor's degree in Biomedical Informatics. Married with children, born and
raised in Dallas, TX. But, like most American's she was unprepared when it was
time to pay her student loans. Unfortunately, she has seen her fair share of
credit challenges after falling into the debt settlement and student loan
nightmare a few years ago dropping her credit score to 500's. Struggling with
debt and declining credit for many years. Luckily, she stumbled across several
tools and resources to get back on track. She documented her progress along the
way in efforts to help others NOT to go through what she went through. In fact,
she is providing the actual blueprint in her "Credit Secret Sauce" course. The
process for improving your credit from start to finish, in the least amount of
time possible to get access to funding for businesses or consumer funding.
Building community around financial literacy!


TESTIMONIALS

⭐⭐⭐⭐⭐


 * JANICE MONTGOMERY ALBOKAI-STRAUSER
   
   Charliette, I am writing to let you know how much we appreciate you speaking
   at the Janice Albokai-DRIVEN TO SUCCESS Conference. You did a masterful job
   of helping us to laugh at ourselves. Through all the laughter, we learned how
   to be financial free of credit card debt and successful in all aspects of
   life. You have the unique ability as a speaker to both entertain and
   financial educate through sharing your personal story. We were all certainly
   blessed with your presentation on Financial Wellness Empowerment.


 * CORDELIA GAFFAR
   
   I had the distinct pleasure of meeting @Charliette Cummings at a recent event
   in Dallas and learned so much about credit mastery. She is definitely an
   expert in the field with a personal story as a testament to the power of
   being a student, then teacher and then leader. I highly recommend her for
   your credit mastery.


 * JAMIL TEALER
   
   Charliette knows her stuff, is very compassionate, and determined to make a
   difference for everyone she comes into contact with. I would highly recommend
   utilizing her services if you want to gain lasting results for your financial
   goals. You won't regret it!


THE BLUEPRINT


 1. PART 1 - AWARENESS


 2. PART 2 - BUILDING


 3. PART 3 - RECOVERY AND STRATEGY


ABOUT THIS COURSE

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

 * Free
 * 16 lessons
 * 0.5 hours of video content


NO MORE CONFUSION ... CREDIT SECRETS REVEALED!

Enroll today


COMING SOON!

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.


OPEN DISCUSSIONS

Join the "Credit Secret Sauce" discussion

 * Free
   
   
   FREECREDIT NOT TAUGHT IN SCHOOLS COMMUNITY FORUM
   
   
   Join Now


 * Home
 * All Products

© Copyright Credit Not Taught In Schools 2024
Teach online with Thinkific Open in a new window