templates/FrontEndBundle/default/contact.html.twig line 1

Open in your IDE?
  1. {% extends 'FrontEndBundle/baseFrontEnd_2022.html.twig' %}
  2. {% block stylesheets %}
  3. {{ parent() }}
  4. <link rel="stylesheet" href="https://sibforms.com/forms/end-form/build/sib-styles.css">
  5. <style>
  6.     .backgroundBg {
  7.         background: #ffffff;
  8.     }
  9.     body {
  10.         font-family: Helvetica, sans-serif;
  11.     }
  12.     .container {
  13.         max-width: 800px;
  14.         margin-left: auto;
  15.         margin-right: auto;
  16.         padding: 10px;
  17.     }
  18.     #phone,
  19.     .btn {
  20.         padding-top: 6px;
  21.         padding-bottom: 6px;
  22.         border: 1px solid #ccc;
  23.         border-radius: 4px;
  24.     }
  25.     .btn {
  26.         color: #ffffff;
  27.         background-color: #428BCA;
  28.         border-color: #357EBD;
  29.         font-size: 14px;
  30.         outline: none;
  31.         cursor: pointer;
  32.         padding-left: 12px;
  33.         padding-right: 12px;
  34.     }
  35.     .btn:focus,
  36.     .btn:hover {
  37.         background-color: #3276B1;
  38.         border-color: #285E8E;
  39.     }
  40.     .btn:active {
  41.         box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  42.     }
  43.     .alert {
  44.         padding: 15px;
  45.         margin-top: 10px;
  46.         border: 1px solid transparent;
  47.         border-radius: 4px;
  48.     }
  49.     .alert-info {
  50.         border-color: #bce8f1;
  51.         color: #31708f;
  52.         background-color: #d9edf7;
  53.     }
  54.     .alert-error {
  55.         color: #a94442;
  56.         background-color: #f2dede;
  57.         border-color: #ebccd1;
  58.     }
  59. </style>
  60. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/css/intlTelInput.css" />
  61. {% endblock %}
  62. {% block javascripts %}
  63. {{ parent() }}
  64. <script src="https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/js/intlTelInput.min.js"></script>
  65. <!-- Facebook Pixel Code -->
  66. <script>
  67.     //$('#scheduleMetting').modal('show');
  68.     function getIp(callback) {
  69.         fetch('https://ipinfo.io/json?token=3b619feb376bf4', { headers: { 'Accept': 'application/json' } })
  70.             .then((resp) => resp.json())
  71.             .catch(() => {
  72.                 return {
  73.                     country: 'us',
  74.                 };
  75.             })
  76.             .then((resp) => callback(resp.country));
  77.     }
  78.     const phoneInputField = document.querySelector("#phone");
  79.     const phoneInput = window.intlTelInput(phoneInputField, {
  80.         initialCountry: "auto",
  81.         geoIpLookup: getIp,
  82.         preferredCountries: ["AR", "CL", "CO", "EC", "MX", "PE", "UY"],
  83.         utilsScript:
  84.             "https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/js/utils.js",
  85.     });
  86.     const info = document.querySelector(".alert-success");
  87.     const error = document.querySelector(".alert-error");
  88.     $('.contact-form-send').submit(function (event) {
  89.         event.preventDefault();
  90.         var values = $(this).serializeArray();
  91.         const phoneNumber = phoneInput.getNumber();
  92.         info.style.display = "none";
  93.         error.style.display = "none";
  94.         if (!phoneInput.isValidNumber()) {
  95.             error.style.display = "";
  96.             error.innerHTML = `Hay un error el télefono ingresado. Verificalo`;
  97.             return;
  98.         }
  99.         let name = values[0].value;
  100.         let lastName = values[1].value
  101.         let company = values[2].value;
  102.         let seniority = values[3].value;
  103.         let industry = values[4].value;
  104.         let deliveryOwn = values[5].value;
  105.         let email = values[6].value;
  106.  
  107.         let phone = phoneNumber.replace("+54","+549");
  108.         let scheduleday = values[8].value;
  109.         let city = values[9].value;
  110.         let country = values[10].value;
  111.         let notes = values[11].value;
  112.         let source = values[12].value;
  113.         let utmSource = values[13].value;
  114.         let utmMedium = values[14].value;
  115.         let utmCampaign = values[15].value;
  116.         /*var event_name = "contact_form_web_event";
  117.         var properties = {
  118.             'EMAIL': email,
  119.             'NOMBRE': name,
  120.             'APELLIDOS': lastName,
  121.             'COMPANY': company,
  122.             'COUNTRY': country,
  123.             'NOTES': notes,
  124.             'PHONE': phone
  125.         }
  126.         var event_data = {
  127.             "data": {
  128.                 "message": notes,
  129.                 "namecustomer": name
  130.             }
  131.         }
  132.         sendinblue.track(event_name,
  133.             properties,
  134.             event_data)
  135.         */
  136.     /*  MAUTIC LOGIC*/
  137.                 
  138.         const urlForm =  "https://mautic.pedidosfree.com/form/submit?formId=3";
  139.         var urlFinal;
  140.     
  141.         if (utmSource != "" && utmMedium != "" && utmCampaign != "") {
  142.             console.log(utmSource);
  143.             console.log(utmMedium);
  144.             console.log(utmCampaign);
  145.             const utm_url = "&utm_source=" + utmSource +  "&utm_medium=" + utmMedium +  "&utm_campaign=" + utmCampaign ;
  146.             urlFinal =  urlForm + utm_url ;
  147.         } else {
  148.             urlFinal =  urlForm ;
  149.         }
  150.     let mauticData = { "mauticform":{
  151.           f_name : name,
  152.           lastname : lastName,
  153.           company :company,
  154.           seniority :seniority,
  155.           industry :industry,
  156.           deliveryown :deliveryOwn,
  157.           email : email,
  158.           phone : phone,
  159.           prefercontactdatetime : scheduleday.replace(/[^a-zA-Z0-9 ]/g, ''),
  160.           city : city,
  161.           country : country,
  162.           notes : notes.replace(/[^a-zA-Z0-9 ]/g, ''),
  163.           formId : 3,
  164.           return : "https://mautic.pedidosfree.com/s/forms/preview/3",
  165.           formName : "formindependet",
  166.           messenger : "1"
  167.         }};
  168.         $.ajax({
  169.             url: urlFinal,
  170.             type: "post",
  171.             headers: {"X-Requested-With": "XMLHttpRequest"},
  172.             async: true,
  173.             data: mauticData,
  174.             //dataType: "json",
  175.             success: function (data) {
  176.                  sendEmailAlert(values)
  177.                 $('.contact-form-send input').val('');
  178.                 $('.contact-form-send textarea').val('');
  179.                 info.style.display = "";
  180.                 info.innerHTML = `Te mensaje fue recibido, te contactaremos a la brevedad.`;
  181.                 fbq('track', 'Contact');
  182.                 //$("#bodyDialog").html("Muchas gracias por tu interés. Te contactaremos a la brevedad.");
  183.                 //$('#scheduleMetting').modal('show');
  184.             },
  185.             error: function (xhr, status, error) {
  186.                 alert(xhr.responseText);
  187.             }
  188.         });
  189.      
  190.         /*
  191.         var prospect_object = {
  192.             FirstName: name,
  193.             LastName: lastName,
  194.             Company: company,
  195.             Phone: phone,
  196.             Email: email,
  197.             City: city,
  198.             Country: country,
  199.             CustomFields: [
  200.                 { "key": "Notes", "value": notes },
  201.                 { "key": "Source", "value": source },
  202.                 { "key": "UtmSource", "value": utmSource },
  203.                 { "key": "UtmMedium", "value": utmMedium },
  204.                 { "key": "UtmCampaign", "value": utmCampaign }
  205.             ]
  206.         };
  207.         values.push({ name: 'phone', value: phone });
  208.         $.ajax({
  209.             url: "{{ path('validate-prospect')}}",
  210.             type: "post",
  211.             async: true,
  212.             data: values,
  213.             dataType: "json",
  214.             success: function (data) {
  215.                 var response = data;
  216.                 if (response.exist) {
  217.                     kl.onFormSubmit(prospect_object, "Register Page Contact - DUPLICATED")
  218.                 } else {
  219.                     kl.onFormSubmit(prospect_object, "Register Page Contact")
  220.                 }
  221.                 values.push({ name: 'exist', value: response.exist });
  222.                 sendEmailAlert(values)
  223.                 $('.contact-form-send input').val('');
  224.                 $('.contact-form-send textarea').val('');
  225.                 info.style.display = "";
  226.                 info.innerHTML = `Te mensaje fue recibido, te contactaremos a la brevedad.`;
  227.                 fbq('track', 'Contact');
  228.                 //$("#bodyDialog").html("Muchas gracias por tu interés. Te contactaremos a la brevedad.");
  229.                 //$('#scheduleMetting').modal('show');
  230.             },
  231.             error: function (xhr, status, error) {
  232.                 alert(xhr.responseText);
  233.             }
  234.         });*/
  235.     });
  236. function sendEmailAlert(values) {
  237.         $.ajax({
  238.             url: "{{ path('send-email-contact') }}",
  239.             type: "post",
  240.             async: true,
  241.             data: values,
  242.             dataType: "json",
  243.             success: function (data) {
  244.                 console.log("send email success");
  245.             },
  246.             error: function (xhr, status, error) {
  247.                 alert(xhr.responseText);
  248.             }
  249.         });
  250. }
  251.  /*
  252.  function fautm_calcTrafSrc () {
  253.   var u1='', u2='', u3='', u4='', u5='';
  254.   var search_engines = [['bing', 'q'], ['google', 'q'], ['yahoo', 'q'], ['baidu', 'q'], ['yandex', 'q'], ['ask', 'q']]; //List of search engines 
  255.   var ref = document.referrer;
  256.   ref = ref.substr(ref.indexOf('//')+2);
  257.   ref_domain = ref;
  258.   ref_path = '/';
  259.   ref_search = '';
  260.   // Checks for campaign parameters
  261.   var url_search = document.location.search;
  262.   if(url_search.indexOf('utm_source') > -1 || url_search.indexOf('utm_medium') > -1 || url_search.indexOf('utm_campaign') > -1 || url_search.indexOf('utm_term') > -1 || url_search.indexOf('utm_content') > -1) {
  263.     u1 = zfautm_gP(url_search, 'utm_source'); 
  264.     u2 = zfautm_gP(url_search, 'utm_medium'); 
  265.     u3 = zfautm_gP(url_search, 'utm_campaign'); 
  266.     u4 = zfautm_gP(url_search, 'utm_term'); 
  267.     u5 = zfautm_gP(url_search, 'utm_content'); 
  268.   } else if ( this.zfautm_gP(url_search, 'gclid')) {
  269.     u1 = 'Google Ads'; 
  270.     u2 = 'cpc'; 
  271.     u3 = '(not set)'; 
  272.     if ( !ZFAdvLead.utmcustPNameArr.includes('gclid') ) {
  273.       ZFAdvLead.utmcustPNameArr.push('gclid');
  274.     }
  275.   } else if(ref) {
  276.     var r_u1 = zfautm_gC('utm_source'); 
  277.     var r_u2 = zfautm_gC('utm_medium'); 
  278.     var r_u3 = zfautm_gC('utm_campaign'); 
  279.     var r_u4 = zfautm_gC('utm_term'); 
  280.     var r_u5 = zfautm_gC('utm_content'); 
  281.     if ( typeof r_u1 === "undefined" && typeof r_u2 === "undefined" && typeof r_u3 === "undefined" && typeof r_u4 === "undefined" && typeof r_u5 === "undefined") {
  282.       // separate domain, path and query parameters
  283.       if (ref.indexOf('/') > -1) {
  284.         ref_domain = ref.substr(0,ref.indexOf('/'));
  285.         ref_path = ref.substr(ref.indexOf('/'));
  286.         if (ref_path.indexOf('?') > -1) {
  287.           ref_search = ref_path.substr(ref_path.indexOf('?'));
  288.           ref_path = ref_path.substr(0, ref_path.indexOf('?'));
  289.         }
  290.       }
  291.       u2 = 'referral'; 
  292.       u1 = ref_domain;                    
  293.     // Extract term for organic source
  294.       for (var i=0; i<search_engines.length; i++){
  295.         if(ref_domain.indexOf(search_engines[i][0]) > -1){
  296.           u2 = 'organic'; 
  297.           u1 = search_engines[i][0];
  298.           u4 = zfautm_gP(ref_search, search_engines[i][1]) || '(not provided)';
  299.           break;
  300.         }
  301.       }
  302.     } else {
  303.       if ( typeof r_u1 !== "undefined" ) {
  304.         u1 = r_u1;
  305.       }
  306.       if ( typeof r_u2 !== "undefined" ) {
  307.           u2 = r_u2;
  308.       }
  309.       if ( typeof r_u3 !== "undefined" ) {
  310.         u3 = r_u3;
  311.       }
  312.       if ( typeof r_u4 !== "undefined" ) {
  313.         u4 = r_u4;
  314.       }
  315.       if ( typeof r_u5 !== "undefined" ) {
  316.         u5 = r_u5;
  317.       }
  318.     }
  319.   } else {
  320.     var r_u1 = zfautm_gC('utm_source'); 
  321.     var r_u2 = zfautm_gC('utm_medium'); 
  322.     var r_u3 = zfautm_gC('utm_campaign'); 
  323.     var r_u4 = zfautm_gC('utm_term'); 
  324.     var r_u5 = zfautm_gC('utm_content'); 
  325.     if ( typeof r_u1 === "undefined" && typeof r_u2 === "undefined" && typeof r_u3 === "undefined" && typeof r_u4 === "undefined" && typeof r_u5 === "undefined") {
  326.       var locRef = document.location.href;
  327.       locRef = locRef.substr(locRef.indexOf('//')+2);
  328.       if (locRef.indexOf('/') > -1) {
  329.         locRef = locRef.substr(0,locRef.indexOf('/'));
  330.       }
  331.       u1 = locRef;
  332.       u2 = 'referral'; 
  333.     } else {
  334.       if ( typeof r_u1 !== "undefined" ) {
  335.         u1 = r_u1;
  336.       }
  337.       if ( typeof r_u2 !== "undefined" ) {
  338.         u2 = r_u2;
  339.       }
  340.       if ( typeof r_u3 !== "undefined" ) {
  341.         u3 = r_u3;
  342.       }
  343.       if ( typeof r_u4 !== "undefined" ) {
  344.         u4 = r_u4;
  345.       }
  346.       if ( typeof r_u5 !== "undefined" ) {
  347.         u5 = r_u5;
  348.       }
  349.     }
  350.   }
  351.   return {
  352.     'source'  : u1, 
  353.     'medium'  : u2, 
  354.     'campaign': u3, 
  355.     'term'    : u4, 
  356.     'content' : u5 
  357.   };
  358. }
  359.  
  360.  
  361. function zfautm_gP(s, q) {
  362.   try{
  363.       var match = s.match('[?&]' + q + '=([^&]+)');
  364.       return match ? decodeURIComponent(match[1]) : '';
  365.   } catch(e){
  366.     return '';  
  367.   }
  368.   
  369. }
  370.  
  371. function zfautm_gC( cookieName ){
  372.   var cookieArr = document.cookie.split('; ');
  373.   for ( var i = 0 ; i < cookieArr.length ; i ++ ){
  374.     var cookieVals = cookieArr[i].split('=');
  375.       if ( cookieVals[0] === cookieName && cookieVals[1] ) {
  376.         return decodeURIComponent(cookieVals[1]);
  377.       }
  378.   }
  379. };
  380.  
  381. function zfautm_gC_enc( cookieName ){
  382.   var cookieArr = document.cookie.split('; ');
  383.   for ( var i = 0 ; i < cookieArr.length ; i ++ ){
  384.     var cookieVals = cookieArr[i].split('=');
  385.       if ( cookieVals[0] === cookieName && cookieVals[1] ) {
  386.         return cookieVals[1];
  387.       }
  388.   }
  389. }
  390.  */
  391. </script>
  392. <noscript><img height="1" width="1" style="display:none"
  393.         src="https://www.facebook.com/tr?id=906774143075401&ev=PageView&noscript=1" /></noscript>
  394. <!-- End Facebook Pixel Code -->
  395. {% endblock %}
  396. {% block page %}
  397. <!-- Banner Section Three -->
  398. <section class="banner-section-three">
  399.     <div class="auto-container">
  400.         <div class="row clearfix">
  401.             <!--Content Column-->
  402.             <div class="content-column col-lg-6 col-md-12 col-sm-12">
  403.                 <div class="inner-column wow fadeInLeft">
  404.                     <h2>Completa tus datos para que un asesor se contacte.</h2>
  405.                     <div class="text"> Únete a PedidosFree y hagamos crecer tu negocio.</div>
  406.                 </div>
  407.             </div>
  408.             <!--Image Column-->
  409.             <div class="col-lg-6 col-md-12 col-sm-12">
  410.                 <br>
  411.                 <div class="sib-form">
  412.                     <div id="sib-container" class="sib-container--large sib-container--vertical"
  413.                         style="text-align:center; background-color:rgba(255,255,255,1); max-width:540px; border-radius:3px; border-width:1px; border-color:#C0CCD9; border-style:solid;">
  414.                         <form method="post" class="contact-form-send">
  415.                             <div style="padding: 8px 0;">
  416.                                 <div class="sib-input sib-form-block">
  417.                                     <div class="form__entry entry_block">
  418.                                         <div class="form__label-row ">
  419.                                             <label class="entry__label"
  420.                                                 style="font-size:16px; text-align:left; font-weight:700; font-family:&quot;Helvetica&quot;, sans-serif; color:#3c4858;"
  421.                                                 for="name" data-required="*">
  422.                                                 Tú nombre
  423.                                             </label>
  424.                                             <div class="entry__field">
  425.                                                 <input class="input" maxlength="200" type="text" id="name" name="name"
  426.                                                     autocomplete="off" placeholder="Ingresá tú nombre"
  427.                                                     data-required="true" required />
  428.                                             </div>
  429.                                         </div>
  430.                                     </div>
  431.                                 </div>
  432.                             </div>
  433.                             <div style="padding: 8px 0;">
  434.                                 <div class="sib-input sib-form-block">
  435.                                     <div class="form__entry entry_block">
  436.                                         <div class="form__label-row ">
  437.                                             <label class="entry__label"
  438.                                                 style="font-size:16px; text-align:left; font-weight:700; font-family:&quot;Helvetica&quot;, sans-serif; color:#3c4858;"
  439.                                                 for="lastname" data-required="*">
  440.                                                 Apellido
  441.                                             </label>
  442.                                             <div class="entry__field">
  443.                                                 <input class="input" maxlength="200" type="text" id="lastname" name="lastname"
  444.                                                     autocomplete="off" placeholder="Ingresá tú Apellido"
  445.                                                     data-required="true" required />
  446.                                             </div>
  447.                                         </div>
  448.                                     </div>
  449.                                 </div>
  450.                             </div>
  451.                             <div style="padding: 8px 0;">
  452.                                 <div class="sib-input sib-form-block">
  453.                                     <div class="form__entry entry_block">
  454.                                         <div class="form__label-row ">
  455.                                             <label class="entry__label"
  456.                                                 style="font-size:16px; text-align:left; font-weight:700; font-family:&quot;Helvetica&quot;, sans-serif; color:#3c4858;"
  457.                                                 for="company" data-required="*">
  458.                                                 Nombre del negocio
  459.                                             </label>
  460.                                             <div class="entry__field">
  461.                                                 <input class="input" maxlength="200" type="text" id="company"
  462.                                                     name="company" autocomplete="off" placeholder="Tu local"
  463.                                                     data-required="true" required />
  464.                                             </div>
  465.                                         </div>
  466.                                     </div>
  467.                                 </div>
  468.                             </div>
  469.                             <div style="padding: 8px 0;">
  470.                                 <div class="sib-select sib-form-block" data-required="true">
  471.                                     <div class="form__entry entry_block">
  472.                                         <div class="form__label-row ">
  473.                                             <label class="entry__label"
  474.                                                 style="font-size:16px; text-align:left; font-weight:700; font-family:&quot;Helvetica&quot;, sans-serif; color:#3c4858;"
  475.                                                 for="seniority" data-required="*">
  476.                                                 Antiguedad del negocio
  477.                                             </label>
  478.                                             <div class="entry__field">
  479.                                             
  480.                                                 <select class="input" id="mauticform_input_formwebregister_seniority" name="seniority" value=""  data-required="true" required>
  481.                                                     <option value="" disabled selected hidden>Seleccioná Antiguedad </option>                    
  482.                                                     <option value="recien_empiezo">Recien Empiezo</option>                    
  483.                                                     <option value="menos_de_un_anio">Menos de un año</option>                    
  484.                                                     <option value="mas_de_un_anio">Más de un año</option>
  485.                                                 </select>
  486.                                              </div>
  487.                                         </div>
  488.                                     </div>
  489.                                 </div>
  490.                             </div>
  491.                             <div style="padding: 8px 0;">
  492.                                 <div class="sib-select sib-form-block" data-required="true">
  493.                                     <div class="form__entry entry_block">
  494.                                         <div class="form__label-row ">
  495.                                             <label class="entry__label"
  496.                                                 style="font-size:16px; text-align:left; font-weight:700; font-family:&quot;Helvetica&quot;, sans-serif; color:#3c4858;"
  497.                                                 for="industry" data-required="*">
  498.                                                 Tipo de negocio
  499.                                             </label>
  500.                                             <div class="entry__field">
  501.                                             
  502.                                                 <select class="input" id="mauticform_input_formwebregister_industry" name="industry"  value=""  data-required="true" required>
  503.                                                                         <option value="" disabled selected hidden>Seleccioná tipo de negocio </option>                    
  504.                                                                         <option value="RESTAURANT">RESTAURANTE</option>                   
  505.                                                                         <option value="PIZZERIA">PIZZERIA</option>                   
  506.                                                                         <option value="SUSHI">SUSHI</option>                    
  507.                                                                         <option value="HELADERIA">HELADERIA</option>                    
  508.                                                                         <option value="TAQUERIA">TAQUERIA</option>                    
  509.                                                                         <option value="TIENDA DE BEBIDAS">BEBIDAS</option>                   
  510.                                                                         <option value="OTRO">OTRO</option>
  511.                                                 </select>
  512.      
  513.                                                 
  514.                                             </div>
  515.                                         </div>
  516.                                     </div>
  517.                                 </div>
  518.                             </div>
  519.                             
  520.                                 <div style="padding: 8px 0;">
  521.                                     <div class="sib-select sib-form-block" data-required="true">
  522.                                         <div class="form__entry entry_block">
  523.                                             <div class="form__label-row ">
  524.                                                 <label class="entry__label"
  525.                                                     style="font-size:16px; text-align:left; font-weight:700; font-family:&quot;Helvetica&quot;, sans-serif; color:#3c4858;"
  526.                                                     for="deliveryown" data-required="*">
  527.                                                     Tengo repartidores propio
  528.                                                 </label>
  529.                                                 <div class="entry__field">
  530.                                                 
  531.                                                     <select class="input" id="mauticform_formwebregister_deliveryown" name="deliveryown"  value=""  data-required="true" required>
  532.                                                         <option value="" disabled selected hidden>Seleccioná respuesta</option>                    
  533.                                                         <option value="SI">SI</option>                  
  534.                                                         <option value="NO">NO</option>
  535.                                                     </select>
  536.                                                 </div>
  537.                                             </div>
  538.                                         </div>
  539.                                     </div>
  540.                                 </div>
  541.                             <div style="padding: 8px 0;">
  542.                                 <div class="sib-input sib-form-block">
  543.                                     <div class="form__entry entry_block">
  544.                                         <div class="form__label-row ">
  545.                                             <label class="entry__label"
  546.                                                 style="font-size:16px; text-align:left; font-weight:700; font-family:&quot;Helvetica&quot;, sans-serif; color:#3c4858;"
  547.                                                 for="email" data-required="*">
  548.                                                 Ingresá tu email
  549.                                             </label>
  550.                                             <div class="entry__field">
  551.                                                 <input class="input" type="text" id="email" name="email"
  552.                                                     autocomplete="off" placeholder="mail@gmail.com" data-required="true"
  553.                                                     required />
  554.                                             </div>
  555.                                         </div>
  556.                                     </div>
  557.                                 </div>
  558.                             </div>
  559.                             <div style="padding: 8px 0;">
  560.                                 <div class="sib-input sib-form-block">
  561.                                     <div class="form__entry entry_block">
  562.                                         <div class="form__label-row ">
  563.                                             <label class="entry__label"
  564.                                                 style="font-size:16px; text-align:left; font-weight:700; font-family:&quot;Helvetica&quot;, sans-serif; color:#3c4858;"
  565.                                                 for="phone" data-required="*">
  566.                                                 Télefono
  567.                                             </label>
  568.                                             <div class="entry__field"
  569.                                                 style="border: 0px solid #c0ccda;text-align: left;">
  570.                                                 <input id="phone" type="tel" name="phone" required />
  571.                                             </div>
  572.                                         </div>
  573.                                     </div>
  574.                                 </div>
  575.                             </div>
  576.                             <div style="padding: 8px 0;">
  577.                                 <div class="sib-input sib-form-block">
  578.                                     <div class="form__entry entry_block">
  579.                                         <div class="form__label-row ">
  580.                                             <label class="entry__label"
  581.                                                 style="font-size:16px; text-align:left; font-weight:700; font-family:&quot;Helvetica&quot;, sans-serif; color:#3c4858;"
  582.                                                 for="schedule_day" data-required="*">
  583.                                                 Horario que preferís que nos comuniquemos
  584.                                             </label>
  585.                                             <div class="entry__field">
  586.                                                 <input class="input" maxlength="200" type="text" id="schedule_day" name="schedule_day"
  587.                                                     autocomplete="off" placeholder="¿ En que día y horario te podemos llamar ? " data-required="true"
  588.                                                     required />
  589.                                             </div>
  590.                                         </div>
  591.                                     </div>
  592.                                 </div>
  593.                             </div>
  594.                             
  595.                             <div style="padding: 8px 0;">
  596.                                 <div class="sib-input sib-form-block">
  597.                                     <div class="form__entry entry_block">
  598.                                         <div class="form__label-row ">
  599.                                             <label class="entry__label"
  600.                                                 style="font-size:16px; text-align:left; font-weight:700; font-family:&quot;Helvetica&quot;, sans-serif; color:#3c4858;"
  601.                                                 for="city" data-required="*">
  602.                                                 Ingresá tu ciudad
  603.                                             </label>
  604.                                             <div class="entry__field">
  605.                                                 <input class="input" maxlength="200" type="text" id="city" name="city"
  606.                                                     autocomplete="off" placeholder="Ciudad" data-required="true"
  607.                                                     required />
  608.                                             </div>
  609.                                         </div>
  610.                                     </div>
  611.                                 </div>
  612.                             </div>
  613.                             <div style="padding: 8px 0;">
  614.                                 <div class="sib-select sib-form-block" data-required="true">
  615.                                     <div class="form__entry entry_block">
  616.                                         <div class="form__label-row ">
  617.                                             <label class="entry__label"
  618.                                                 style="font-size:16px; text-align:left; font-weight:700; font-family:&quot;Helvetica&quot;, sans-serif; color:#3c4858;"
  619.                                                 for="country" data-required="*">
  620.                                                 Pais
  621.                                             </label>
  622.                                             <div class="entry__field">
  623.                                                 <select class="input" id="country" name="country" data-required="true"
  624.                                                     required>
  625.                                                     <option value="" disabled selected hidden>Seleccioná un pais
  626.                                                     </option>
  627.                                                     <option class="sib-menu__item" value="Argentina">
  628.                                                         ARGENTINA
  629.                                                     </option>
  630.                                                     <option class="sib-menu__item" value="Bolivia">
  631.                                                         BOLIVIA
  632.                                                     </option>
  633.                                                     <option class="sib-menu__item" value="Chile">
  634.                                                         CHILE
  635.                                                     </option>
  636.                                                     <option class="sib-menu__item" value="Colombia">
  637.                                                         COLOMBIA
  638.                                                     </option>
  639.                                                     <option class="sib-menu__item" value="Ecuador">
  640.                                                         ECUADOR
  641.                                                     </option>
  642.                                                     <option class="sib-menu__item" value="Uruguay">
  643.                                                         URUGUAY
  644.                                                     </option>
  645.                                                     <option class="sib-menu__item" value="Mexico">
  646.                                                         MEXICO
  647.                                                     </option>
  648.                                                     <option class="sib-menu__item" value="Peru">
  649.                                                         PERU
  650.                                                     </option>
  651.                                                     <option class="sib-menu__item" value="Paraguay">
  652.                                                         PARAGUAY 
  653.                                                     </option>
  654.                                                     <option class="sib-menu__item" value="Otro Pais">
  655.                                                         OTRO PAIS
  656.                                                     </option>
  657.                                                 </select>
  658.                                             </div>
  659.                                         </div>
  660.                                     </div>
  661.                                 </div>
  662.                             </div>
  663.                             <div style="padding: 8px 0;">
  664.                                 <div class="sib-input sib-form-block">
  665.                                     <div class="form__entry entry_block">
  666.                                         <div class="form__label-row ">
  667.                                             <label class="entry__label"
  668.                                                 style="font-size:16px; text-align:left; font-weight:700; font-family:&quot;Helvetica&quot;, sans-serif; color:#3c4858;"
  669.                                                 for="notes" data-required="*">
  670.                                                 Mensaje
  671.                                             </label>
  672.                                             <div class="entry__field">
  673.                                                 <textarea id="notes" name="notes" style="overflow:auto;resize:none"
  674.                                                     rows="2" class="input" maxlength="60" id="NOTES" name="NOTES"
  675.                                                     autocomplete="off"
  676.                                                     placeholder="¿ Qué estás buscando ?  ¿ Qué esperas de un sistema de pedidos online ? "
  677.                                                     data-required="true" required></textarea>
  678.                                             </div>
  679.                                         </div>
  680.                                     </div>
  681.                                 </div>
  682.                             </div>
  683.  
  684.                             <input id="source" type="hidden" name="source" value="">
  685.                             <input id="utm_source" type="hidden" name="utm_source" value="">
  686.                             <input id="utm_medium" type="hidden" name="utm_medium" value="">
  687.                             <input id="utm_campaign" type="hidden" name="utm_campaign" value="">
  688.                             <input id="utm_content" type="hidden" name="utm_content" value="">
  689.                             <input id="utm_term" type="hidden" name="utm_term" value="">
  690.                       
  691.                             <div style="padding: 8px 0;">
  692.                                 <div class="sib-form-block"
  693.                                     style="font-size:16px; text-align:left; font-family:&quot;Helvetica&quot;, sans-serif; color:#3C4858; background-color:transparent;">
  694.                                     <div class="sib-text-form-block">
  695.                                         <p><br></p>
  696.                                     </div>
  697.                                 </div>
  698.                             </div>
  699.                             <div id="successRegister" class="alert alert-success" style="display: none"></div>
  700.                             <div class="alert alert-error" style="display: none"></div>
  701.                             <button class="theme-btn btn-style-two" type="submit" name="submit-form">ENVIAR <span
  702.                                     class="icon flaticon-next-3"></span></button>
  703.                     </div>
  704.                     </form>
  705.                 </div>
  706.             </div>
  707.         </div>
  708.     </div>
  709.     </div>
  710.  
  711. </div>
  712. </section>
  713. {# DIALOG MODAL #}
  714. <div class="modal fade" id="dialog" tabindex="-1" role="dialog" aria-labelledby="smallModal" aria-hidden="true">
  715.     <div class="modal-dialog modal-lg">
  716.         <div class="modal-content">
  717.             <div class="modal-header">
  718.                 <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
  719.                 <h4 class="modal-title" id="myModalLabel">Aviso</h4>
  720.             </div>
  721.             <div id="bodyDialog" class="modal-body"></div>
  722.             <div class="modal-footer">
  723.                 <button type="button" class="btn btn-default" data-dismiss="modal">Cerrar</button>
  724.             </div>
  725.         </div>
  726.     </div>
  727. </div>
  728. <div class="modal fade" id="scheduleMetting" tabindex="-1" role="dialog" aria-labelledby="largeModal" aria-hidden="true">
  729.     <div class="modal-dialog modal-lg">
  730.         <div class="modal-content">
  731.             <div class="modal-header">
  732.                 <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
  733.                 <h4 class="modal-title" id="myModalLabel">Agendá una Demo Gratuita</h4>
  734.             </div>
  735.                 <div class="modal-body">
  736.                     <p>Muchas gracias por completar el formulario. En breve nos estaremos contactando contigo.</p>
  737.                     <b>Si deseas directamente agendar una demo totalmente Gratuita por que sabés que nuestro software es para vos. Dale click al botón y ahorrá tiempo:</b>
  738.                     <br>
  739.                     <a class="theme-btn btn-style-four" href="https://calendly.com/pedidosfree/30min" >Agendar Reunion <span class="icon flaticon-next-3"></span></a>
  740.                 </div>
  741.             <div class="modal-footer">
  742.                 <button type="button" class="btn btn-default" data-dismiss="modal">Cerrar</button>
  743.             </div>
  744.         </div>
  745.     </div>
  746. </div>
  747. {% endblock %}