templates/component_parts/common/callback_form/main.html.twig line 1

Open in your IDE?
  1. {#
  2. ID полей для работы скрипта UIS
  3. #support-callback-form-main--client-phone
  4. #support-callback-form-main--client-confirm-with-privacy-policy
  5. #support-callback-form-main--submit
  6. #}
  7. <h2 class="price-help__title">Нужна помощь?</h2>
  8. <p class="price-help__subtitle">
  9.     Заполните форму и с вами свяжется наш менеджер и ответит на все интересующие вас вопросы
  10. </p>
  11. <div class="price-help__form">
  12.     <form id="support-callback-form-{{ this.formType }}" class="form callback-form-component" method="post">
  13.         <div class="form__item">
  14.             <label class="form__label" for="support-callback-form-{{ this.formType }}--client-phone">Контактный номер*</label>
  15.             <input
  16.                 id="support-callback-form-{{ this.formType }}--client-phone"
  17.                 type="text"
  18.                 name="phone"
  19.                 class="form__input phone"
  20.                 placeholder="+7(___)___-__-__"
  21.                 required
  22.             />
  23.         </div>
  24.         <div class="form__btn">
  25.             <button class="btn btn--primary submit-emulator"
  26.                     type="button"
  27.                     id="support-callback-form-{{ this.formType }}--submit-emulator"
  28.             >
  29.                 Получить консультацию
  30.             </button>
  31.             <button
  32.                 type="submit"
  33.                 class="submit-real"
  34.                 id="support-callback-form-{{ this.formType }}--submit"
  35.                 style="display: none;"
  36.             ></button>
  37.         </div>
  38.         <div class="form__checkbox">
  39.             <input class="checkbox" type="checkbox" checked required
  40.                    id="support-callback-form-{{ this.formType }}--client-confirm-with-privacy-policy">
  41.             <label class="checkbox__text" for="support-callback-form-{{ this.formType }}--client-confirm-with-privacy-policy">
  42.                 <p>
  43.                     Я
  44.                     <a href="{{ asset(uri_consent_to_the_processing_of_personal_data) }}" target="_blank">
  45.                         согласен
  46.                     </a>
  47.                     на обработку персональных данных в соответствии с
  48.                     <a href="{{ asset(uri_user_personal_data) }}" target="_blank">политикой</a>
  49.                     в отношении их обработки
  50.                 </p>
  51.             </label>
  52.         </div>
  53.     </form>
  54. </div>