www.conceptatech.com Open in urlscan Pro
63.35.51.142  Public Scan

Submitted URL: http://www.conceptatech.com/
Effective URL: https://www.conceptatech.com/
Submission: On December 10 via api from US — Scanned from DE

Form analysis 3 forms found in the DOM

Name: WebToLeads3879743000016984057POST https://crm.zoho.com/crm/WebToLeadForm

<form action="https://crm.zoho.com/crm/WebToLeadForm" name="WebToLeads3879743000016984057" method="POST" onsubmit="javascript:document.charset=&quot;UTF-8&quot;; return checkMandatory3879743000016984057()" accept-charset="UTF-8"
  data-cb-wrapper="true">
  <input type="text" style="display:none;" name="xnQsjsdp" value="f4b1253905ef52a2772272c355f738d5e8d3a3177f6f856578fae860c88e4aae">
  <input type="hidden" name="zc_gad" id="zc_gad" value="undefined">
  <input type="text" style="display:none;" name="xmIwtLD" value="1c7c647d49050c346700df825d88a53db81880fea2daea14b897ea6e62ee6101">
  <input type="text" style="display:none;" name="actionType" value="TGVhZHM=">
  <input type="text" style="display:none;" name="returnURL" value="https://www.conceptatech.com/thank-you">
  <!-- Do not remove this code. -->
  <!--<div class='zcwf_title' style='max-width: 600px;color: black;'>Tech Sector Insight Form</div>-->
  <div class="zcwf_row">
    <div class="zcwf_col_fld"><input type="text" id="First_Name" name="First Name" maxlength="40" placeholder="First Name">
      <div class="zcwf_col_help"></div>
    </div>
  </div>
  <div class="zcwf_row">
    <div class="zcwf_col_fld"><input type="text" id="Last_Name" name="Last Name" maxlength="80" placeholder="Last Name">
      <div class="zcwf_col_help"></div>
    </div>
  </div>
  <div class="zcwf_row">
    <div class="zcwf_col_fld"><input type="text" ftype="email" id="Email" name="Email" maxlength="100" placeholder="Email">
      <div class="zcwf_col_help"></div>
    </div>
  </div>
  <div class="zcwf_row">
    <div class="zcwf_col_fld"><select class="zcwf_col_fld_slt" id="LEADCF21" name="LEADCF21">
        <option value="-None-">Job Position</option>
        <option value="C Level">C Level</option>
        <option value="Founder / Owner">Founder / Owner</option>
        <option value="VP">VP</option>
        <option value="Director">Director</option>
        <option value="Manager">Manager</option>
        <option value="Others">Others</option>
      </select>
      <div class="zcwf_col_help"></div>
    </div>
  </div>
  <div class="zcwf_row">
    <div class="zcwf_col_fld"><input type="text" id="Company" name="Company" maxlength="200" placeholder="Company">
      <div class="zcwf_col_help"></div>
    </div>
  </div>
  <div class="zcwf_row">
    <div class="zcwf_col_fld"><input type="text" id="Phone" name="Phone" maxlength="30" placeholder="Phone">
      <div class="zcwf_col_help"></div>
    </div>
  </div>
  <div class="zcwf_row" style="margin-top: 12px;">
    <div class="zcwf_col_fld">
      <input type="checkbox" class="zcwf_ckbox" id="LEADCF1031" name="LEADCF103" maxlength="3">
      <div class="zcwf_col_lab checkboxLbl">
        <label for="LEADCF1031">By clicking the checkbox, I agree to receive communication from Concepta Technologies. (No spam :D). By clicking on the Submit button, you agree to our
          <a href="https://www.conceptatech.com/privacy-policy" style="color: #fff;">Privacy and Policy</a> <span style="color:red;">*</span></label>
      </div>
      <div class="zcwf_col_help"></div>
    </div>
  </div>
  <div class="zcwf_row">
    <div class="zcwf_col_lab"></div>
    <div class="zcwf_col_fld"><input type="submit" id="formsubmit" class="formsubmit zcwf_button" value="Claim Free Report" title="Submit"></div>
  </div>
  <script>
    function validateEmail3879743000016984057() {
      var form = document.forms['WebToLeads3879743000016984057'];
      var emailFld = form.querySelectorAll('[ftype=email]');
      var i;
      for (i = 0; i < emailFld.length; i++) {
        var emailVal = emailFld[i].value;
        if ((emailVal.replace(/^\s+|\s+$/g, '')).length != 0) {
          var atpos = emailVal.indexOf('@');
          var dotpos = emailVal.lastIndexOf('.');
          if (atpos < 1 || dotpos < atpos + 2 || dotpos + 2 >= emailVal.length) {
            alert('Please enter a valid email address. ');
            emailFld[i].focus();
            return false;
          }
        }
      }
      return true;
    }

    function checkMandatory3879743000016984057() {
      var mndFileds = new Array('Last Name', 'Email');
      var fldLangVal = new Array('Last\x20Name', 'Email');
      for (i = 0; i < mndFileds.length; i++) {
        var fieldObj = document.forms['WebToLeads3879743000016984057'][mndFileds[i]];
        if (fieldObj) {
          if (((fieldObj.value).replace(/^\s+|\s+$/g, '')).length == 0) {
            if (fieldObj.type == 'file') {
              alert('Please select a file to upload.');
              fieldObj.focus();
              return false;
            }
            alert(fldLangVal[i] + ' cannot be empty.');
            fieldObj.focus();
            return false;
          } else if (fieldObj.nodeName == 'SELECT') {
            if (fieldObj.options[fieldObj.selectedIndex].value == '-None-') {
              alert(fldLangVal[i] + ' cannot be none.');
              fieldObj.focus();
              return false;
            }
          } else if (fieldObj.type == 'checkbox') {
            if (fieldObj.checked == false) {
              alert('Please accept  ' + fldLangVal[i]);
              fieldObj.focus();
              return false;
            }
          }
          try {
            if (fieldObj.name == 'Last Name') {
              name = fieldObj.value;
            }
          } catch (e) {}
        }
      }
      if (!validateEmail3879743000016984057()) {
        return false;
      }
      document.querySelector('.crmWebToEntityForm .formsubmit').setAttribute('disabled', true);
    }

    function tooltipShow3879743000016984057(el) {
      var tooltip = el.nextElementSibling;
      var tooltipDisplay = tooltip.style.display;
      if (tooltipDisplay == 'none') {
        var allTooltip = document.getElementsByClassName('zcwf_tooltip_over');
        for (i = 0; i < allTooltip.length; i++) {
          allTooltip[i].style.display = 'none';
        }
        tooltip.style.display = 'block';
      } else {
        tooltip.style.display = 'none';
      }
    }
  </script>
  <!-- Do not remove this --- Analytics Tracking code starts -->
  <script id="wf_anal"
    src="https://crm.zohopublic.com/crm/WebFormAnalyticsServeServlet?rid=1c7c647d49050c346700df825d88a53db81880fea2daea14b897ea6e62ee6101gidf4b1253905ef52a2772272c355f738d5e8d3a3177f6f856578fae860c88e4aaegid885e3c1045bd9bdcc91bdf30f82b5696gid14f4ec16431e0686150daa43f3210513&amp;tw=61690b96c1d0471b638f31426f38e68aa67fb7ed6da86f32dc10ad817fe55a0a">
  </script>
  <div id="wf_tr_div_081392e3f6cfcd062197a81727375640f16c4a1a452dffe521dfb0770203e89ab9895df4c163131d48262f3e0972e68a"><input name="te" type="hidden" value="true"><input name="wbfIanaFrD" type="hidden"
      value="081392e3f6cfcd062197a81727375640f16c4a1a452dffe521dfb0770203e89ab9895df4c163131d48262f3e0972e68a"><input id="webform_analytics_submission_081392e3f6cfcd062197a81727375640f16c4a1a452dffe521dfb0770203e89ab9895df4c163131d48262f3e0972e68a"
      name="webform_analytics_submission" type="hidden" value=""><input name="rw" type="hidden" value="9ec852c18c655c8bb0881249c21700041e21c8f632e356461937066c94e70f96"><input name="la" type="hidden"
      value="11999d53d1562084a0774ac85758b4d599c4c57ccff20219c7ccd1421c4834e2"><input name="eo" type="hidden" value="8016e4dcf634c9b747caf710cf78ab592021c6fd0744774263eec722a23644a6"><img
      id="wf_tr_vi_img_081392e3f6cfcd062197a81727375640f16c4a1a452dffe521dfb0770203e89ab9895df4c163131d48262f3e0972e68a" style="display: none;"><img
      id="wf_tr_st_img_081392e3f6cfcd062197a81727375640f16c4a1a452dffe521dfb0770203e89ab9895df4c163131d48262f3e0972e68a" style="display: none;"><img
      id="wf_tr_ab_img_081392e3f6cfcd062197a81727375640f16c4a1a452dffe521dfb0770203e89ab9895df4c163131d48262f3e0972e68a" style="display: none;"></div><!-- Do not remove this --- Analytics Tracking code ends. -->
</form>

Name: wf-form-Newsletter-Email-FormGET

<form id="wf-form-Newsletter-Email-Form" name="wf-form-Newsletter-Email-Form" data-name="Newsletter Email Form" method="get" class="footer-newsletter-form" data-wf-page-id="654018efda9fb3de1f911329"
  data-wf-element-id="5aeb850f-3051-e873-a001-6a48f5400701" data-cb-wrapper="true" aria-label="Newsletter Email Form"><input type="email" class="input footer-newsletter w-input" maxlength="256" name="email" data-name="Email"
    placeholder="Enter your email" id="email" required=""><input type="submit" value="Subscribe to" data-wait="Please wait..." class="button-primary footer-newsletter contact-form w-button"></form>

POST https://epta.maillist-manage.com/weboptin.zc

<form method="POST" id="zcampaignOptinForm" style="margin:0px;" action="https://epta.maillist-manage.com/weboptin.zc" target="_zcSignup" data-cb-wrapper="true">
  <div style="display:none;background-color:#FFEBE8;padding:10px 10px; color:#d20000; font-size:11px; margin:10px;border:solid 1px #ffd9d3; margin-top:20px;" id="errorMsgDiv">&nbsp;&nbsp;Please correct the marked field(s) below.</div>
  <!-- check to mark emailid field as type email, and other mandatory fields as type required -->
  <div>
    <input name="CONTACT_EMAIL" changetype="CONTACT_EMAIL" changeitem="SIGNUP_FORM_FIELD" type="email" required="true" id="CONTACT_EMAIL"
      style="border-color: rgb(12, 51, 255);font-size: 17px;border-style: none none solid;height: 60px;width: 100%;max-width: 420px;" placeholder="Enter your email to receive tech insights in your inbox">
    <span style="display:none" id="dt_CONTACT_EMAIL">1,true,6,Lead Email,2</span>
  </div>
  <div style="margin-top: 24px;">
    <input name="SIGNUP_SUBMIT_BUTTON" id="zcWebOptin" type="button"
      style="background-color: rgb(12, 51, 255); color: rgb(255, 255, 255); cursor: pointer; border: none rgb(255, 255, 255); padding: 8px 12px 6px 12px; outline: 0px; white-space: normal; border-radius: 0px; text-align: center; width: 150px; font-size: 18px; height: 60px;"
      value="Subscribe" onclick="saveOptin(this,false,function runOnFormSubmit_sf3z2fbb81a77ff7048307eaaf6ab8faa9efdc0cd1c433f8f7cfbb01f73b2bd4f0c1(th){
		/*Before submit, if you want to trigger your event, &quot;include your code here&quot;*/
	},'#sf3z2fbb81a77ff7048307eaaf6ab8faa9efdc0cd1c433f8f7cfbb01f73b2bd4f0c1[data-type=&quot;signupform_0&quot;] ',event);">
  </div><!-- Do not edit the below Zoho Campaigns hidden tags -->
  <input type="hidden" id="fieldBorder" value="rgb(12, 51, 255)">
  <input type="hidden" id="submitType" name="submitType" value="optinCustomView">
  <input type="hidden" id="lD" name="lD" value="">
  <input type="hidden" name="emailReportId" id="emailReportId" value="">
  <input type="hidden" id="formType" name="formType" value="QuickForm">
  <input type="hidden" name="zx" id="cmpZuid" value="12e3136bb">
  <input type="hidden" name="zcvers" value="3.0">
  <input type="hidden" name="oldListIds" id="allCheckedListIds" value="">
  <input type="hidden" id="mode" name="mode" value="OptinCreateView">
  <input type="hidden" id="zcld" name="zcld" value="">
  <input type="hidden" id="document_domain" value="zoho.com">
  <input type="hidden" id="zc_Url" value="epta.maillist-manage.com">
  <input type="hidden" id="new_optin_response_in" value="2">
  <input type="hidden" id="duplicate_optin_response_in" value="2">
  <input type="hidden" name="zc_trackCode" id="zc_trackCode" value="ZCFORMVIEW" onload="">
  <input type="hidden" id="zc_formIx" name="zc_formIx" value="3z2fbb81a77ff7048307eaaf6ab8faa9efdc0cd1c433f8f7cfbb01f73b2bd4f0c1"><!-- End of the campaigns hidden tags --><input type="text" style="display:none !important;" name="qs" class="ih"><input
    type="text" style="display:none !important;" name="lf" class="ih" value="1702189166362"><input type="hidden" name="di" value="114497121022115691741702189166363">
</form>

Text Content

 * Home
 * About Us
 * Services
   
   Mobile App DevelopmentWeb & API DevelopmentBusiness SolutionsIT Staff
   AugmentationOur Approach
 * Open Source
 * Insights
 * Work
 * Careers
 * Get started

Let's Talk


 * Home
 * About Us
 * Services
   
   Mobile App DevelopmentWeb & API DevelopmentBusiness SolutionsIT Staff
   AugmentationOur Approach
 * Open Source
 * Insights
 * Work
 * Careers
 * Get started

Let's Talk




AWARD-WINNING WEB & MOBILE DEVELOPMENT COMPANY

We deliver efficient, functional apps that address immediate challenges,
empower teams, and set the foundation for future growth.

Let’s Talk



THOUGHTFUL DEVELOPMENT.
ACCELERATED GROWTH.


TRACFONE


Mobile App Development

Retail

Still using human-controlled spreadsheets? We recently helped a major prepaid
wireless provider update their workflow with an intuitive, AI-supported
inventory management app.


ADVENTHEALTH


IT Staff Augmentation

Healthcare

During the early stages of the Covid-19 pandemic, our IT augmentation services
helped healthcare provider quickly scale up.


RED LOBSTER


Mobile App Development

Hospitality

A loyalty app to take ownership of the guest experience. Launched to a 4.9 out
of 5-star rating based on nearly 110,000 reviews in the App Store.


WARNER MUSIC


Web App and API Development

Entertainment

An unparalleled fan experience fueled by direct access to fan insights and a
data driven, personalized marketing experience.


ANAGO CLEANING


Web App and API Development

Franchising

Struggling with an outdated, inefficient system, Anago needed to modernize its
operational workflows and enhance user engagement.





View All Case Studies


2022 TECH
SECTOR INSIGHTS



Innovation and emerging trends in software development

Job Position C Level Founder / Owner VP Director Manager Others



By clicking the checkbox, I agree to receive communication from Concepta
Technologies. (No spam :D). By clicking on the Submit button, you agree to our
Privacy and Policy *



Put your finger on the
pulse of IT Development



TRUST IS BUILT IN SPRINTS...

and sprints are built on planning.
At Concepta, we pride ourselves on asking the right questions and earning your
trust through well-planned projects. Our extensive and proven development
process enables us to build exceptional software solutions to attack your growth
challenges and set you up for future success.


01.


DELIVER BETTER
PROJECTS, FASTER

02.


BUILD PREDICTABLE
TIMELINES

03.


MAKE CONFIDENT
TECHNICAL DECISIONS


EVERY SERVICE YOU NEED. ONE EXPERIENCED PARTNER.


REACT & REACT NATIVE DEVELOPMENT


FLUTTER DEVELOPMENT


WEB & API DEVELOPMENT


TEAM AUGMENTATION

Browse Our Services


INDUSTRY RECOGNITION

About Us

At Concepta, we are proud of our achievements. We strive to always use our
experience and innovation to deliver insightful tech solutions with the highest
attention to detail.

So, when someone gives us an award, it speaks volumes about the commitment and
skill set of our amazing team.


GET IN TOUCH


HAVE AN IDEA? LET'S BRING IT TO LIFE TODAY.




DON'T TAKE OUR WORD FOR IT


“PROFESSIONALISM. THEIR ABILITY TO EFFICIENTLY PROBLEM-SOLVE AND GET TO THE CORE
OF THE PROBLEM STOOD OUT.”

Stephan Fortier
Co-founder


“CONCEPTA HAS DISPLAYED SUBSTANTIAL EXPERTISE, CAPABILITIES, PEOPLE, PROCESSES,
AND TECHNOLOGY NEEDED TO SUPPORT OUR EFFORTS IN DEVELOPING A CUSTOMIZED MRP
PROGRAM.”

Vladislav Rozhkovskiy  
Former Product Manager






TAKE A LOOK AT OUR LATEST ARTICLES

Browse More Posts
News


CONCEPTA'S APP DEVELOPMENT NEW MOVE: HOW OUR NEW ORLANDO OFFICE WILL BENEFIT OUR
CLIENTS


UNLEASHING THE POWER OF COLLABORATION: CONCEPTA TECH'S JOURNEY AT ANTHROPICAI
CLAUDE HACKATHON


GET IN TOUCH TODAY

Contact Us

+1 (407) 720-4711


We are an award-winning web and mobile app development company based in Orlando,
Florida.

Thanks for joining our newsletter.
Oops! Something went wrong.


  Thank you for Signing Up

  Please correct the marked field(s) below.
1,true,6,Lead Email,2




Menu
 * Home
 * About Us
 * Insights
 * Work
 * Careers

Services
 * Mobile App Development
 * Web & API Development
 * Business Solutions
 * IT Staff Augmentation
 * Our Approach

Copyright © 2023 - Concepta Technologies LLC. All Rights Reserved | Privacy &
Policy


We use cookies to ensure you get the best experience on our website. Consult our
Privacy Policy.

Accept