shop.corporateconversationscoach.com Open in urlscan Pro
54.87.111.129  Public Scan

URL: https://shop.corporateconversationscoach.com/
Submission: On February 16 via automatic, source certstream-suspicious — Scanned from DE

Form analysis 1 forms found in the DOM

Name: paymentForm

<form id="paymentForm" name="paymentForm" class="ng-pristine ng-invalid ng-invalid-required ng-valid-email" novalidate="novalidate">
  <h3 class="tpl-6__checkout__title mb-sm-24 mb-16">Checkout</h3>
  <h4 class="tpl-6__checkout__subtitle mb-sm-20 mb-16">Contact</h4>
  <div class="row mobile-display">
    <div class="col-sm-6 col-12">
      <div class="form-group d-flex flex-column">
        <input type="text" class="form-control order-2 ng-pristine ng-untouched ng-empty ng-invalid ng-invalid-required" ng-class="{'typed': order.customer.first_name !== ''}" autofill="" id="fname" name="fname" ng-model="order.customer.first_name"
          required="" spellcheck="false" value="" autocomplete="given-name">
        <label for="fname" class="order-1">First Name</label>
      </div>
    </div>
    <div class="col-sm-6 col-12">
      <div class="form-group d-flex flex-column">
        <input type="text" class="form-control order-2 ng-pristine ng-untouched ng-empty ng-invalid ng-invalid-required" ng-class="{'typed': order.customer.last_name !== ''}" autofill="" id="lname" name="lname" ng-model="order.customer.last_name"
          required="" spellcheck="false" value="" autocomplete="family-name">
        <label for="lname" class="order-1">Last Name</label>
      </div>
    </div>
  </div>
  <div class="row">
    <div class="col-sm-6 col-12">
      <div class="form-group d-flex flex-column">
        <input type="email" class="form-control form-control--icon form-control--email order-2 ng-pristine ng-untouched ng-empty ng-valid-email ng-invalid ng-invalid-required" ng-class="{'typed': order.customer.email !== ''}" autofill="" id="email"
          name="email" ng-model="order.customer.email" required="" spellcheck="false" value="" autocomplete="email">
        <label for="email" class="order-1">Email Address</label>
      </div>
    </div>
    <div class="col-sm-6 col-12">
      <!-- ngIf: checkoutState.product.properties.phone_number_field -->
    </div>
  </div>
  <h4 class="tpl-6__checkout__subtitle mt-sm-20 mb-16">Order Summary</h4>
  <div id="order-summary-widget" box-loading="contextRefresh">
    <div id="summary-totals" class="box">
      <div class="invoice-item subtotal-row ng-hide" ng-show="checkoutContext.order.invoice.subtotal !== checkoutContext.order.invoice.total">
        <div class="invoice-label-col">
          <span class="invoice-item-label">Subtotal:</span>
        </div>
        <div class="invoice-amount-col float-right text-right">
          <span class="invoice-item-amount ng-binding">£0.00</span>
        </div>
      </div>
      <div class="invoice-item tax-row ng-hide" ng-show="checkoutContext.order.invoice.tax !== 0">
        <div class="invoice-label-col">
          <span class="invoice-item-label">Tax:</span>
        </div>
        <div class="invoice-amount-col float-right text-right">
          <span class="invoice-item-amount ng-binding">£0.00</span>
        </div>
      </div>
      <div class="invoice-item shipping-row ng-hide" ng-show="checkoutContext.order.invoice.shipping !== 0">
        <div class="invoice-label-col">
          <span class="invoice-item-label">Shipping:</span>
        </div>
        <div class="invoice-amount-col float-right text-right">
          <span class="invoice-item-amount ng-binding">£0.00</span>
        </div>
      </div>
      <div class="invoice-item discount-row ng-hide" ng-show="checkoutContext.order.invoice.discount !== 0">
        <div class="invoice-label-col">
          <span class="invoice-item-label">Discounts:</span>
        </div>
        <div class="invoice-amount-col float-right text-right">
          <span class="invoice-item-amount ng-binding">-£0.00</span>
        </div>
      </div>
      <div class="invoice-item total-row">
        <div class="invoice-label-col">
          <span class="invoice-item-label">Total:</span>
        </div>
        <div class="invoice-amount-col float-right text-right">
          <span class="invoice-item-amount ng-binding" id="total">£0.00 </span>
        </div>
      </div>
      <!-- ngIf: subscriptionsByProductId[checkoutContext.order.invoice.items[0].product_id] -->
    </div>
  </div>
  <div class="tpl-6__order text-center pt-sm-30 py-24">
    <div class="g-recaptcha-container">
      <script type="text/javascript">
        var recaptchaChallengeSeen = false;
        var recaptchaCallback = function(response) {
          window.recaptchaResponse = response;
        };
        var onloadCallback = function() {
          window.recaptchaWidgetId = grecaptcha.render('submit', {
            'sitekey': '6LfyULUmAAAAAJld89qgZEGDDIGnjfWqZGBkXh3t',
            'callback': recaptchaCallback,
            'size': 'invisible'
          });
        };
        const domObserver = new MutationObserver(() => {
          const iframe = document.querySelector("iframe[src^=\"https://www.google.com/recaptcha\"][src*=\"bframe\"]");
          if (!iframe) {
            return;
          }
          domObserver.disconnect();
          const recaptchaContainerObserver = new MutationObserver(() => {
            if (iframe.parentNode.parentNode.style.visibility !== "visible") {
              return;
            }
            recaptchaContainerObserver.disconnect();
            recaptchaChallengeSeen = true;
          });
          recaptchaContainerObserver.observe(iframe.parentNode.parentNode, {
            attributes: true
          });
        });
        domObserver.observe(document.documentElement || document.body, {
          childList: true,
          subtree: true
        });
        window.resetRecaptcha = function() {
          window.recaptchaResponse = undefined;
          grecaptcha.reset(window.recaptchaWidgetId);
          recaptchaChallengeSeen = false;
          domObserver.observe(document.documentElement || document.body, {
            childList: true,
            subtree: true
          });
        }
      </script>
      <input id="submit" type="hidden" value="Submit" style="">
      <script src="https://www.google.com/recaptcha/api.js?onload=onloadCallback&amp;render=explicit" async="" defer=""></script>
      <script>
        const sleepUntil = async (f, timeoutMs) => {
          return new Promise((resolve, reject) => {
            const timeWas = new Date();
            const wait = setInterval(function() {
              if (f()) {
                clearInterval(wait);
                resolve();
              } else if (new Date() - timeWas > timeoutMs) { // Timeout
                clearInterval(wait);
                reject();
              }
            }, 20);
          });
        }

        function fetchToken() {
          window.resetRecaptcha();
          return new Promise(async function(resolve, reject) {
            grecaptcha.reset();
            grecaptcha.execute(window.recaptchaWidgetId);
            var responseReceived = false;
            try {
              await sleepUntil(() => window.recaptchaResponse, 60000);
              responseReceived = true;
              resolve('');
            } catch {
              reject('reCAPTCHA timeout exceeded!');
            }
            snowplow('trackSelfDescribingEvent', {
              event: {
                schema: 'iglu:com.samcart/recaptcha_challenge_shown_event/jsonschema/1-0-0',
                data: {
                  shown: recaptchaChallengeSeen,
                }
              }
            });
            snowplow('trackSelfDescribingEvent', {
              event: {
                schema: 'iglu:com.samcart/recaptcha_challenge_response_received_event/jsonschema/1-0-0',
                data: {
                  response_received: responseReceived,
                }
              }
            });
          });
        }
      </script>
    </div>
    <!-- ngIf: processor_selection !== 'digital_wallet' --><button type="submit" class="btn btn-primary mx-auto mb-sm-12 mb-20 w-100 main-cta ng-scope" id="placeOrder" name="placeOrder" ng-click="placeOrder('w2uKqq1YwmgE9NRJVKiZLd1c')"
      ng-disabled="shippingCountryIsRestricted || isProcessingOrder" ng-if="processor_selection !== 'digital_wallet'"> Place Order Now </button><!-- end ngIf: processor_selection !== 'digital_wallet' -->
    <div id="payment-request-button" class="mx-auto mb-sm-12 mb-20 ng-hide" ng-show="processor_selection === 'digital_wallet'"></div>
  </div>
</form>

Text Content

The


SMOOTHSCRIPT


EMAIL SET

The SmoothScript Email Set is a meticulously curated collection of
professionally crafted email templates designed specifically for executives and
mid-management professionals in marketing and PR who are non-native English
speakers. Tailored to enhance communication efficiency and professionalism,
these templates offer a seamless solution for both internal team correspondence
and client interactions.

Enhanced Professionalism

Time-Saving

Confidence Boost

FREE DOWNLOAD


What's Included

5 Formal Email Templates for Clients and Colleagues

5 Informal Email Templates for Clients and Team Mates

Emails for various scenarios

Benefits of the SmoothScript Email Set

Enhanced Professionalism: Elevate your communication game with polished and
sophisticated email templates that reflect professionalism and expertise in
every interaction.

Time-Saving: Say goodbye to the struggle of composing emails from scratch. The
SmoothScript Email Set provides ready-to-use templates that save valuable time,
allowing you to focus on your core responsibilities.

Consistency: Ensure consistency in your communication tone and style across
various contexts, whether you're addressing colleagues, superiors, or clients.

Clarity and Precision: Communicate your ideas effectively with clear and concise
language, avoiding misunderstandings and ambiguity.

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

ELEVATE YOUR ENGLISH

Nulla in sollicitudin sem, at scelerisque lorem. Aliquam fermentum egestas
fringilla. Fusce maximus placerat magna. Donec cursus, neque non auctor
condimentum, lectus mauris fermentum turpis, non maximus lectus nisl eget
lectus.

Versatility: From team updates and project coordination to client pitches and
follow-ups, the SmoothScript Email Set covers a wide range of scenarios,
catering to diverse communication needs.

Confidence Boost: Feel confident in your communication abilities, knowing that
you have access to professionally crafted templates that are tailored to your
specific industry and role.

Cultural Sensitivity: Designed with the needs of non-native English speakers in
mind, the templates prioritize clarity and simplicity while maintaining cultural
sensitivity, ensuring smooth communication across borders and language barriers.



Flexibility: Customize the templates to suit your individual preferences and
adapt them to different situations while maintaining the underlying
professionalism and effectiveness.



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

Hear It From Others

JESSICA CHAPMAN



Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin feugiat mauris
velit, vel tincidunt enim iaculis quis. Mauris vitae arcu vulputate, vehicula
nisl id, mattis eros. Etiam tempor risus vel euismod suscipit. Vestibulum ante
ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae;

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

About The Author

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus a libero
felis. Cras sagittis augue eget malesuada convallis. Maecenas nec dictum urna.
Nam eget justo pulvinar, hendrerit lacus vitae, maximus sem. Nullam vitae porta
dui. Sed sodales, felis sed dictum placerat, libero purus vulputate justo, in
facilisis ex sem nec nunc. Cras molestie mi nec nunc imperdiet ultrices. Sed
molestie euismod suscipit. Pellentesque vitae justo nec sapien pretium ornare.

Proin in felis dignissim, aliquam eros ut, viverra est. Donec sed nibh a mauris
faucibus vulputate. Donec malesuada pretium purus, id maximus ligula euismod
vel. Quisque quis accumsan eros. Sed lorem neque, facilisis in facilisis nec,
congue nec nunc. Donec tincidunt purus at nisl mattis semper.




ELEVATE YOUR ENGLISH

BOOK A DISCOVERY CALL AND GET STARTED

Get Started Now

My 100% Money Back Guarantee to You

My guarantee to you is that these habits, when implemented, will make a
difference in your life. I know when you take action, you’ll get results!

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



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


CHECKOUT

CONTACT

First Name
Last Name
Email Address


ORDER SUMMARY

Subtotal:
£0.00
Tax:
£0.00
Shipping:
£0.00
Discounts:
-£0.00
Total:
£0.00

Place Order Now



© 2024 Corporate Conversations Coach. All Rights Reserved.

Powered by SamCart





PROCESSING