kenul-s-site.thinkific.com
Open in
urlscan Pro
2606:4700:4400::ac40:9861
Public Scan
Submitted URL: http://kenul-s-site.thinkific.com/
Effective URL: https://kenul-s-site.thinkific.com/courses/Artofspeech
Submission: On June 15 via api from US — Scanned from DE
Effective URL: https://kenul-s-site.thinkific.com/courses/Artofspeech
Submission: On June 15 via api from US — Scanned from DE
Form analysis
1 forms found in the DOMPOST /tenant_leads
<form id="new_lead_122726b210" 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://kenul-s-site.thinkific.com/courses/Artofspeech">
<label for="new_lead_122726b210-email" class="form__label"> Email </label>
<input id="new_lead_122726b210-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_122726b210-error">
<p aria-live="polite" id="new_lead_122726b210-error" class="form__error-msg hidden" role="alert"> Please enter a valid email address </p>
<div class="form__group">
<div>
<input id="new_lead_122726b210-accept" class="form__group-checkbox" name="accept" type="checkbox" value="y" required="" aria-required="true" aria-describedby="new_lead_122726b210-accept-error">
<label for="new_lead_122726b210-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_122726b210-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_122726b210-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_122726b210 > input[name='tenant_lead[page_url]']").val(window.location.href)
});
document.getElementById('new_lead_122726b210').addEventListener('thinkific:success', function(event) {
$('#new_lead_122726b210-submit-lead').val("Thank You");
$('#new_lead_122726b210').addClass('lead-capture__success')
$('#new_lead_122726b210 .lead-capture__error-msg').hide();
$('#new_lead_122726b210 .lead-capture__success-msg').show();
setTimeout(function() {
$('#new_lead_122726b210-submit-lead').val('Submit');
$('#new_lead_122726b210').removeClass('lead-capture__success')
$('#new_lead_122726b210')[0].reset();
$('#new_lead_122726b210-submit-lead').attr('aria-disabled', 'true');
}, 6000);
})
document.getElementById('new_lead_122726b210').addEventListener('thinkific:error', function(event) {
$('#new_lead_122726b210 .lead-capture__error-msg').show();
$('#new_lead_122726b210 .lead-capture__success-msg').hide();
})
$('#new_lead_122726b210-accept').on('click', function() {
if ($('#new_lead_122726b210-accept').is(':checked')) {
$('#new_lead_122726b210-submit-lead').removeAttr('aria-disabled');
} else {
$('#new_lead_122726b210-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_122726b210-email')
var $leadCaptureError = $('#new_lead_122726b210-error')
$leadCapture.on('focusout', function() {
if (!regex.test($leadCapture.val())) {
addErrorMsg($leadCapture, $leadCaptureError);
} else {
removeErrorMsg($leadCapture, $leadCaptureError);
}
});
var $leadCaptureCheckbox = $('#new_lead_122726b210-accept');
var $leadCaptureCheckboxError = $('#new_lead_122726b210-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 STOIC ACADEMY Toggle menu Menu * All Products * Join now * Sign In LEARN TO SPEAK LIKE A PRO video tutorials explaining and guiding you through the process of articulating yourself learn now Watch Intro Video VIDEO BECOME CONFIDENT Learn to speak with confidence and present yourself at the highest level. Gain the skills needed to ensure that your words are not only heard but also believed and respected by your audience. NEVER STUTTER AGAIN Eliminate stuttering and speak fluently with ease. Discover techniques and strategies to overcome speech impediments and communicate smoothly and effectively in any situation. DEMAND ATTENTION Learn how to capture and maintain your audience's focus from the moment you begin speaking. Discover techniques to engage listeners, making your presentations and conversations compelling and impactful. Learn now MASTERING EFFECTIVE SPEAKING The Chapters: 1. SIGNIFICANCE OF SPEECH a. Course Introduction and overview b. Introduction 2. SELF ASSESMENT a. Initial Self-Assessment b. Foundational Skills Module 3. HOW TO IMPROVE YOUR SPEECH a. Speech Structure and Organization b. Engaging the Audience c. Non-verbal Communication 4. MASTERING THE ART OF SPEECH a. analysis of famous speakers b. Final Assessment c. Ongoing Practice and Resources * Free * APPLICATION Where you would actually be using the skills you accquire * PUBLIC SPEAKING Develop the skills to effectively communicate your message to an audience, enhancing your confidence and presence. Learn to craft compelling speeches that resonate and persuade. * CONVERSATIONS Master the art of meaningful dialogue, focusing on active listening and clear communication. Build better relationships by sharing ideas and understanding others' perspectives. * SPEAKING YOUR MIND Gain the confidence to express your thoughts and opinions assertively. Learn strategies to articulate your views clearly, ensuring your voice is heard in any setting. FAQ * How Many Videos Do I Get 10 videos walking through the secrets of being a good speaker and analyzing other speakers and descriptions displaying any websites that I may have used * Why is it Free Because I unfortunatly cannot make my marketing teacher pay for it * Will I Finally Be Able to Ask Out my Crush Yes, and you will also attract more girls 25% DISCOUNT Sign up on the first 7 days to get a 25% discount Get discount! * 6 Days * 12 Hours * 15 Minutes * 17 Seconds LEARN THE POWER THAT WORDS HOLD Get started now Join Now DISCOUNTS Stay tuned for discounts on all my products, sign up for more details. 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 Products * contact me * * * © Copyright Stoic Academy 2024 Teach online with Thinkific Open in a new window