cities.readyfornextacademy.com Open in urlscan Pro
35.169.200.225  Public Scan

URL: https://cities.readyfornextacademy.com/
Submission: On April 09 via automatic, source certstream-suspicious — Scanned from DE

Form analysis 1 forms found in the DOM

POST /tenant_leads

<form id="new_lead_440e8f9474" 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://cities.readyfornextacademy.com/">
  <div class="form__group">
    <label for="new_lead_440e8f9474-email" class="form__label"> Email <input id="new_lead_440e8f9474-email" type="email" name="tenant_lead[email]" value="" placeholder="Enter your email" autocapitalize="off" autocomplete="off" autocorrect="off"
        spellcheck="false" required="" class="form__control" aria-describedby="new_lead_440e8f9474-error">
      <p id="new_lead_440e8f9474-error" class="form__error-msg hidden" role="alert">Please enter a valid email address</p>
    </label>
  </div>
  <div class="form__group">
    <input id="new_lead_440e8f9474-accept" class="form__group-checkbox" name="accept" type="checkbox" value="y" required="">
    <label for="new_lead_440e8f9474-accept">Yes please, save my details so you can send me educational content that is relevant and helpful.</label>
  </div>
  <div class="form__group form__button-group">
    <input id="new_lead_440e8f9474-submit-lead" type="submit" value="Submit" class="button button-primary" aria-label="Submit" disabled="">
    <p class="lead_capture-error" role="alert">Oops, something went wrong. Please try again with a different email address.</p>
  </div>
  <script>
    $(function() {
      $("#new_lead_440e8f9474 > input[name='tenant_lead[page_url]']").val(window.location.href)
    });
    document.getElementById('new_lead_440e8f9474').addEventListener('thinkific:success', function(event) {
      $('#new_lead_440e8f9474-submit-lead').val("Thank You");
      $('#new_lead_440e8f9474').addClass('lead_capture-success')
      $('#new_lead_440e8f9474 .lead_capture-error').hide();
      setTimeout(function() {
        $('#new_lead_440e8f9474-submit-lead').val('Submit');
        $('#new_lead_440e8f9474').removeClass('lead_capture-success')
        $('#new_lead_440e8f9474')[0].reset();
        $('#new_lead_440e8f9474-submit-lead').attr('disabled', 'disabled');
      }, 6000);
    })
    document.getElementById('new_lead_440e8f9474').addEventListener('thinkific:error', function(event) {
      $('#new_lead_440e8f9474 .lead_capture-error').show();
    })
    $('#new_lead_440e8f9474-accept').click(function() {
      if ($('#new_lead_440e8f9474-accept').is(':checked')) {
        $('#new_lead_440e8f9474-submit-lead').removeAttr('disabled');
      } else {
        $('#new_lead_440e8f9474-submit-lead').attr('disabled', 'disabled');
      }
    });
  </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.focusout(function() {
      if (!regex.test($email.val())) {
        addErrorMsg($email, $emailError);
      } else {
        removeErrorMsg($email, $emailError);
      }
    });
    var $leadCapture = $('#new_lead_440e8f9474-email')
    var $leadCaptureError = $('#new_lead_440e8f9474-error')
    $leadCapture.focusout(function() {
      if (!regex.test($leadCapture.val())) {
        addErrorMsg($leadCapture, $leadCaptureError);
      } else {
        removeErrorMsg($leadCapture, $leadCaptureError);
      }
    });
    var $password = $('#user\\[password\\]');
    var $passwordError = $('#user\\[password\\]-error')
    $password.focusout(function() {
      if ($password.val().length < 6) {
        addErrorMsg($password, $passwordError);
      } else {
        removeErrorMsg($password, $passwordError);
      }
    });
    var $firstName = $('#user\\[first_name\\]');
    var $firstNameError = $('#user\\[first_name\\]-error');
    $firstName.focusout(function() {
      if ($firstName.val() === '') {
        addErrorMsg($firstName, $firstNameError);
      } else {
        removeErrorMsg($firstName, $firstNameError);
      }
    });
    var $lastName = $('#user\\[last_name\\]');
    var $lastNameError = $('#user\\[last_name\\]-error');
    $lastName.focusout(function() {
      if ($lastName.val() === '') {
        addErrorMsg($lastName, $lastNameError);
      } else {
        removeErrorMsg($lastName, $lastNameError);
      }
    });
    var $checkbox = $('#user\\[terms\\]');
    var $checkboxError = $('#user\\[terms\\]-error');
    $checkbox.focusout(function() {
      if (!$checkbox.is(':checked')) {
        addErrorMsg($checkbox, $checkboxError);
      } else {
        removeErrorMsg($checkbox, $checkboxError);
      }
    });
    var $file = $('.my-account__avatar-label');
    $file.change(function() {
      $file.append('<p 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.focusout(function() {
      if ($(this).prop('required')) {
        if (!$select.is(':selected')) {
          addErrorMsg($select, $selectError);
        } else {
          removeErrorMsg($select, $selectError);
        }
      }
    });
    var $customField = $('.custom-field');
    var $customFieldError = $('#custom-field-error');
    $customField.focusout(function() {
      if ($(this).prop('required')) {
        if ($customField.val() === '') {
          addErrorMsg($customField, $customFieldError);
        } else {
          removeErrorMsg($customField, $customFieldError);
        }
      }
    });
  </script>
</form>

Text Content

Skip to main content


RFN ACADEMY CITIES

Toggle menu Menu
 * About
 * Our Experts
 * Programs
 * Upcoming Events
 * Resources
 * RFN Cities Home
 * Sign In


READY FOR NEXT CITIES

Is your community ready for next?


Join our community


WE HELP COMMUNITIES AND CITIES BEGIN CONVERSATIONS ABOUT TRANSITION PLANNING.





WHAT IS YOUR ECONOMY WORTH?

How Value Acceleration Can Boost Business Retention

Over the course of the 60-minute webinar economic development leaders will join
leading value acceleration and transition planning experts to discuss techniques
and programs to help existing businesses build more value, prepare for future
transition events and find new economic opportunities.

Join us Wednesday, March 23, 2022 at 11:00 am CT
Register Now

Watch Intro Video


LEARN MORE ABOUT RFN CITIES





WHAT IS THE RFN CITIES SOLUTION?


The RFN Cities Program is a scalable business retention, preparedness, and
transition program that helps educate and advise private business owners and
entrepreneurs on business value acceleration and transition events.

The Ready for Next team works with each community to support businesses uncover,
understand and learn more about building value in their business and the options
for transitioning.

Together we work with a community to advance inclusive economic prosperity in
the communities they work and live in.



WHAT’S INCLUDED IN THE RFN CITIES PROGRAM?

 * Automated business benchmark assessments made available for local SMEs in the
   community where the program is taking place. This is a tool chambers and
   business partners can promote as a free service.

 * Four tailor-made workshops and transition readiness scorecards four half day
   sessions for up to 200 business owners total.

 * Access to an online education platform committed to developing business
   transition, exit planning, and value acceleration content and training to
   support professional local small and medium-sized business owners.

 * A custom Business Transition and Preparedness Report for your community which
   when combined with various workshops will give our business owners,
   entrepreneurs, and community leaders an overview of the various resources
   available to those considering, transferring, acquiring, exiting, expanding a
   business in your community.


RFN CITIES SUPPORTS COMMUNITIES AND OWNERS

 * Programs, How RFN Cities works with your Community
   
   
   RFN CITIES COMMUNITIES PROGRAM
   
   28 Lessons Free
   

 * Programs, How RFN Cities helps Business Owners
   
   
   RFN CITIES BUSINESS OWNER PROGRAM
   
   26 Lessons Free
   




CONNECT WITH US

The Ready for Next team works with each community to support up to 200
businesses uncover, understand and learn more about building value in their
business and the options for transitioning. Together we work with a community to
advance inclusive economic prosperity in the communities that we work in.
Connect with us



WHAT SETS THE RFN CITIES PROGRAM APART?

The program focuses on at-risk businesses:

● Provides data-driven insights leveraging a business disruption risk model and
credible business credit risk partners to inform community and business leaders
about the problem and raise public awareness.

● Offers leading-edge online education tools, cohort-based learning, and
integrated value acceleration education workshops with up to 200 businesses per
workshop

● Workshops include a comprehensive, dynamic group of professionals and
certified business transition advisors, economic development leaders and local
networks of expertise including tax, legal, financial, wealth insurance, mergers
and acquisitions, employee ownership and more.

● Can opt for an additional component to attract, match and serve entrepreneurs
from underserved/disadvantaged populations.


WHAT IS THE POTENTIAL RISK TO YOUR COMMUNITY?

FIND OUT NOW


LEARN FROM INDUSTRY EXPERTS

 * Programs, How RFN Cities helps Business Owners
   
   
   RFN CITIES BUSINESS OWNER PROGRAM
   
   26 Lessons Free
   

 * Programs
   
   
   RFN CITIES RESOURCES
   
   3 Lessons Free
   

 * Programs, How RFN Cities works with your Community
   
   
   RFN CITIES COMMUNITIES PROGRAM
   
   28 Lessons Free
   

 * Programs
   
   
   TEN SKILLS FOR AGILE LEADERSHIP
   
   0 Lessons
   Coming soon

 * Programs
   
   
   ACCELERATING OUT OF A RECESSION - ONLINE SERIES
   
   Free
   7 Courses

 * Programs
   
   
   INTRODUCTION TO DECISION DYNAMICS
   
   45 Lessons
   Coming soon

View All Programs


PROGRAM STAKEHOLDERS

A community is made up of multiple stakeholders who have an interest in the
success of its business community’s growth and continuity.


 * ECONOMIC DEVELOPMENT
   
   Economic development partners have a vested interest in their community’s
   long-term success. Economic development examples include: local and regional
   government agencies, chamber of commerce, economic development organizations.


 * LOCAL COMPANIES
   
   Local companies, large and small, can be found in communities around the
   world and they are the backbone for all economies.


 * INVESTED STAKEHOLDERS
   
   Invested stakeholders for RFN Cities programs can be found in each community.
   Invested stakeholders include: banks, industry associations, educational
   institutions, trade unions.


 * CONTACT US FOR MORE INFORMATION OR VISIT READYFORNEXTCITIES.COM
   
   


JOIN OUR COMMUNITY

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.

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


 * Home
 * All Courses
 * FAQ
 * Contact Us

 * 
 * 

© Copyright RFN Academy Cities 2023