custom/plugins/PickwareDhl/src/Resources/views/storefront/component/account/register.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/component/account/register.html.twig' %}
  2. {% block component_account_register_address_shipping %}
  3.     <div class="pickware-dhl-location-finder-wrapper" data-behavior="modal">
  4.         {{ parent() }}
  5.         <button type="button"
  6.                 class="pickware-dhl-location-finder__select-on-map-button btn btn-outline-secondary d-none"
  7.                 data-toggle="modal"
  8.                 data-target=".pickware-dhl-location-finder-modal"
  9.                 title="{{ "pickware-dhl.location-finder.storefront.select-on-map"|trans|striptags }}">
  10.             {{ "pickware-dhl.location-finder.storefront.select-on-map"|trans|sw_sanitize }}
  11.         </button>
  12.         <div class="modal fade pickware-dhl-location-finder-modal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
  13.             <div class="modal-dialog modal-lg" role="document">
  14.                 <div class="modal-content">
  15.                     <div class="modal-header">
  16.                         <h5 class="modal-title pickware-dhl-location-finder-modal__title">
  17.                             {{ "pickware-dhl.location-finder.storefront.title"|trans|sw_sanitize }}
  18.                         </h5>
  19.                         <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  20.                             <span aria-hidden="true">&times;</span>
  21.                         </button>
  22.                     </div>
  23.                     <div class="modal-body">
  24.                         {% sw_include 'storefront/pickware-dhl/location-finder/location-finder.html.twig' with {
  25.                             'showTitle': false,
  26.                             'prefix': 'shippingAddress',
  27.                         } %}
  28.                     </div>
  29.                 </div>
  30.             </div>
  31.         </div>
  32.     </div>
  33. {% endblock %}