templates/Postroyka/AccountBundle/Auth/login_dev.html.twig line 1

Open in your IDE?
  1. {% apply spaceless %}
  2.     <!DOCTYPE html>
  3.     <html>
  4.         <head>
  5.             <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  6.             <title>Вход в личный кабинет - Постройка.бел</title>
  7.             <meta name="viewport" content="width=device-width">
  8.             <meta name="robots" content="noindex, nofollow">
  9.         </head>
  10.         <body>
  11.             <div class="auth_blk">
  12.                 {{ form_start(form, {'action': path('login_check')}) }}
  13.                 {{ form_errors(form) }}
  14.                 {{ form_widget(form) }}
  15.                 <button type="submit">Войти</button>
  16.                 {{ form_end(form) }}
  17.             </div>
  18.         </body>
  19.     </html>
  20. {% endapply %}