templates/widget/promocode/default.html.twig line 1

Open in your IDE?
  1. <section class="subscription">
  2.     <div class="container">
  3.         <div class="subscription__content">
  4.             <div class="subscription__title">
  5.                 {{ title|default|raw }}
  6.                 <div class="subscription__title-curve">
  7.                     <svg width="255" height="7" viewBox="0 0 255 7" fill="none" xmlns="http://www.w3.org/2000/svg">
  8.                         <path d="M2 4.91809C19.0734 4.91809 34.8427 2 52.1055 2C61.6381 2 71.1707 2 80.7034 2C93.3782 2 110.174 2.95522 122.064 4.04266C132.515 4.99846 144.211 4.91809 155.153 4.91809C175.035 4.91809 195.142 5.43306 214.239 3.88055C224.71 3.02933 243.11 2.3941 253 3.75085" stroke="black" stroke-width="3" stroke-linecap="round"/>
  9.                     </svg>
  10.                 </div>
  11.             </div>
  12.             <div class="subscription__desc">{{ subtitle|default|raw }}</div>
  13.             <div class="subscription__form">
  14.                 <form action="{{ path('app-promocode-send') }}" class="site__form" id="promocodeForm" novalidate>
  15.                     <div class="site__form-field">
  16.                         <input type="text" id="promocodeForm_email" name="promocode[email]" placeholder="ваш e-mail">
  17.                     </div>
  18.                     <div class="site__form-field">
  19.                         <input type="tel" id="promocodeForm_phone" name="promocode[phone]" placeholder="ваш телефон">
  20.                     </div>
  21.                     <div class="site__form-field site__form-field-small">
  22.                         <button type="submit" class="site__form-submit">отправить</button>
  23.                         <svg width="46" height="44" viewBox="0 0 46 44" fill="none" xmlns="http://www.w3.org/2000/svg" class="site__form-field-svg-mobile">
  24.                             <path d="M1.64648 9.40176C8.74964 5.66326 17.5427 2.74009 25.5149 1.94287" stroke="black" stroke-width="3" stroke-linecap="round"/>
  25.                             <path d="M13.5806 25.0656C23.7809 23.7351 33.9587 23.1561 44.162 22.082" stroke="black" stroke-width="3" stroke-linecap="round"/>
  26.                             <path d="M3.13818 39.9834C7.11116 40.7961 11.0878 41.4966 15.0724 42.2211" stroke="black" stroke-width="3" stroke-linecap="round"/>
  27.                         </svg>
  28.                         <svg width="223" height="135" viewBox="0 0 223 135" fill="none" xmlns="http://www.w3.org/2000/svg" class="site__form-field-svg-desctop">
  29.                             <path d="M194.967 32.2351C202.434 28.2301 214.758 24.6225 219.732 17.1608" stroke="black" stroke-width="3" stroke-linecap="round"/>
  30.                             <path d="M197.121 65.6139C202.838 65.6139 208.817 64.9886 214.349 66.6906C216.616 67.3881 218.472 67.7673 220.809 67.7673" stroke="black" stroke-width="3" stroke-linecap="round"/>
  31.                             <path d="M185.277 94.6857C189.752 96.0745 193.289 97.3146 196.583 100.608C197.624 101.649 198.058 102.691 199.274 103.3" stroke="black" stroke-width="3" stroke-linecap="round"/>
  32.                             <path d="M133.594 20.391C133.843 13.9041 138.035 8.14499 140.054 2.08655" stroke="black" stroke-width="3" stroke-linecap="round"/>
  33.                             <path d="M77.6037 20.391C76.85 16.1205 75.4502 11.8269 75.4502 7.47021" stroke="black" stroke-width="3" stroke-linecap="round"/>
  34.                             <path d="M26.9968 22.5445C24.0299 19.4031 20.0672 15.5756 17.9642 11.837C17.6507 11.2796 16.2295 7.14469 16.2295 8.54697" stroke="black" stroke-width="3" stroke-linecap="round"/>
  35.                             <path d="M2.23193 120.527L15.1527 107.607" stroke="black" stroke-width="3" stroke-linecap="round"/>
  36.                             <path d="M75.45 109.76C74.2888 115.976 73.1423 122.067 71.1431 128.064" stroke="black" stroke-width="3" stroke-linecap="round"/>
  37.                             <path d="M124.979 111.913C127.854 118.873 130.492 127.182 134.67 133.448" stroke="black" stroke-width="3" stroke-linecap="round"/>
  38.                         </svg>
  39.                     </div>
  40.                     <div class="site__form-text">нажимая на «отправить», вы соглашаетесь на обработку персональных данных, получение рекламно-информационных рассылок и принимаете условия <a href="/politika-konfedentsialnosti">пользовательского соглашения</a></div>
  41.                     <input type="hidden" name="promocode[_token]" value="{{ csrf_token('promocode') }}"/>
  42.                 </form>
  43.             </div>
  44.         </div>
  45.     </div>
  46. </section>