www.corporatelearningconcierge.com Open in urlscan Pro
2606:4700::6812:1e85  Public Scan

URL: https://www.corporatelearningconcierge.com/
Submission: On July 17 via automatic, source certstream-suspicious — Scanned from DE

Form analysis 1 forms found in the DOM

POST /tenant_leads

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


CORPORATE LEARNING CONCIERGE

Toggle menu Menu
 * Welcome
 * Corporate Courses
 * Sign up for free!
 * Sign In

Watch Intro Video


PRESS PLAY


THE LEADING SPACE TO IMPROVE EMPLOYEE EXPERIENCE AND ENGAGEMENT.

Corporate Learning Concierge is a game-changer for companies and leaders seeking
to transform the on-the-go, on-demand, learning experience of their employees.




A MESSAGE FROM THE FOUNDER- NERISSA J. PERSAUD

Hi there! I'm Nerissa Persaud, and I've spent nearly 20 years working with
leaders and companies, focusing on how organisations speak, think and operate in
order to identify where gaps might exist, why they exist and how it affects the
way we handle stress, manage things, lead teams and respond to situations around
us. Through my research, I've found that user experience is a key element in
effective learning and transformation. Yet it is often the space that is often
neglected. Corporate Learning Concierge is changing this and bridging the gap to
make Corporate Learning a lived experience. By combining human connection and
artificial intelligence, we simplify problems, prioritise user experience,
create support systems for deep thinking, and convert ideas into tangible
results. Join me on this groundbreaking mission to shape a future where
corporate learning is fun! Let's make a difference together.
Business Profile



IMPROVE WORKFORCE DYNAMICS WITHIN YOUR COMPANY.

Sign-up to get the latest on employee well-being and experience.

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.

Watch Intro Video


GET STARTED FOR FREE!

Enrol in our flagship course: Enabling Better Employee Well-being in the
Workplace and Beyond.

Sign Up for free Check out Course


HELLO@CORPORATELEARNINGCONCIERGE.COM

Connect ⎋ Learn ⌘ Inspire ★

Click to Find Out If You Qualify for 30 day Free Access to Flagship Course
Enabling Better Employee Well-being in the Workplace and Beyond


 * Connect on LinkedIn
 * Courses
 * Member Sign-in
 * Sign-Up

 * 

© 2023, Corporate Learning Concierge. All rights reserved.
Teach online with Thinkific Open in a new window