src/PortalBundle/Resources/views/Modules/tires-hotel-popup.html.twig line 1

Open in your IDE?
  1. <div class="modal fade modal__step__custom " id="tires-hotel" tabindex="-1" role="dialog" aria-labelledby="callMeLabel"
  2.      aria-hidden="true">
  3.     <div class="modal-dialog modal__step__custom__dialog modal-dialog-centered" role="document">
  4.         <div class="modal-content modal__step__custom__content modal__step__custom-btn">
  5.             <div class="modal-header modal__step__custom__header">
  6.                 <p class="modal-title modal__step__custom__title"
  7.                    id="tires-hotel-title">{{ 'tires_hotel.modal_title'|trans({}, 'portal_base') }}</p>
  8.                 <button type="button" class="close modal__step__custom__close" data-dismiss="modal"
  9.                         data-bs-dismiss="modal" aria-label="Close">
  10.                     <span aria-hidden="true">&times;</span>
  11.                 </button>
  12.             </div>
  13.             {{ form_start(tiresHotelForm, {attr: {class: 'forms-sm lead-form pop-up', 'data-parent': 'tires-hotel', 'data-thank-popup': 'show', action: path( 'form_tires_hotel' )} }) }}
  14.             <div class="modal-body modal__step__custom__body">
  15.                 <p class="modal__step__custom__text">{{ 'card_car.modal.contact_phone'|trans({}, 'portal_base') }}</p>
  16.                 <div class="modal__step__custom__input">
  17.                     {{ form_row(tiresHotelForm.name) }}
  18.                 </div>
  19.                 <div class="modal__step__custom__input">
  20.                     {{ form_row(tiresHotelForm.phone) }}
  21.                 </div>
  22.                 <div class="modal__step__custom__input mb-4">
  23.                     {{ form_row(tiresHotelForm.dealers) }}
  24.                 </div>
  25.                 <div class="col-md-12">
  26.                     <fieldset class="text-center">
  27.                         <p class="modal__step__custom__text">{{ 'card_car.modal.how_connect_u'|trans({}, 'portal_base') }}</p>
  28.                         {{ form_row(tiresHotelForm.message_type) }}
  29.                     </fieldset>
  30.                 </div>
  31.                 <div class="col-md-12">
  32.                     <div class="form-group checkbox style-b js-form-privacy">
  33.                         <label class="checkboxes__item-privacy">
  34.                             <input type="checkbox" name="{{ tiresHotelForm.privacy.vars.full_name }}"
  35.                                    value="{{ tiresHotelForm.privacy.vars.value }}"
  36.                                    id="{{ tiresHotelForm.privacy.vars.id }}"/>
  37.                             <div id="check_privacy" class="checkbox__checkmark form-control"></div>
  38.                             <div class="checkbox__body">{{ 'multi_consultation.step_3.confirm'|trans({}, 'dc_base') }}
  39.                                 <a href="{{ privacyUrl }}"
  40.                                    target="_blank">{{ 'multi_consultation.step_3.confirm_more'|trans({}, 'dc_base') }}</a>
  41.                             </div>
  42.                         </label>
  43.                     </div>
  44.                 </div>
  45.             </div>
  46.             <div class="d-none">
  47.                 {{ form_rest(tiresHotelForm) }}
  48.             </div>
  49.             <div class="modal-footer modal__step__custom__footer mt-0">
  50.                 <button type="submit"
  51.                         class="modal__step__custom__btn">{{ 'tires_hotel.modal_submit'|trans({}, 'portal_base') }}</button>
  52.             </div>
  53.             {{ form_end(tiresHotelForm) }}
  54.         </div>
  55.     </div>
  56. </div>