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

Open in your IDE?
  1. <form class="form callback-form-component">
  2.     <div class="form__inner">
  3.         <div class="form__item form__item--single">
  4.             <label class="form__label form__label--gray" for="support-callback-form-advanced--client-phone">
  5.                 Контактный номер*
  6.             </label>
  7.             <input class="form__input form__input--inversed phone"
  8.                    type="text"
  9.                    id="support-callback-form-advanced--client-phone"
  10.                    placeholder="+7(___)___-__-__"
  11.                    name="phone"
  12.             />
  13.         </div>
  14.         <div class="form__btn-group">
  15.             <div class="form__btn join__btn">
  16.                 <button class="btn btn--primary submit-emulator" type="button"
  17.                         id="support-callback-form-advanced--submit-emulator"
  18.                 >
  19.                     Получить консультацию
  20.                 </button>
  21.                 <button
  22.                     class="submit-real"
  23.                     type="submit"
  24.                     id="support-callback-form-advanced--submit"
  25.                     style="display: none;"
  26.                 ></button>
  27.             </div>
  28.             <div class="form__btn join__btn">
  29.                 <a href="{% if registerCode is defined %}{{ path('notaryRegistryWithRefovodCode', {code: registerCode}) }}{% else %}{{ path('notaryRegistry') }}{% endif %} "
  30.                    class="btn btn--secondary">Зарегистрироваться <span class="blur"></span></a>
  31.             </div>
  32.         </div>
  33.     </div>
  34.     <div class="form__checkbox join__checkbox">
  35.         <input class="checkbox"
  36.                type="checkbox"
  37.                id="support-callback-form-advanced--client-confirm-with-privacy-policy"
  38.                required=""
  39.                checked
  40.         />
  41.         <label class="checkbox__text checkbox__text--white" for="support-callback-form-advanced--client-confirm-with-privacy-policy">
  42.             <p>Я <a href="{{ asset(uri_consent_to_the_processing_of_personal_data) }}" target="_blank"
  43.                     class="checkbox__link text--link">согласен</a> на обработку персональных данных в соответствии с
  44.                 <a href="{{ asset(uri_user_personal_data) }}" target="_blank" class="checkbox__link text--link">Политикой</a>
  45.                 в отношении их обработки
  46.             </p>
  47.         </label>
  48.     </div>
  49. </form>