src/WebBundle/Resources/views/resetting_layout.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         {% block head_page %}
  5.             <meta charset="UTF-8" />
  6.             <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, minimal-ui" />
  7.             {# <link rel="stylesheet" href="/fonts/Lato-Black-900.eot" as="style">
  8.             <link rel="stylesheet" href="/fonts/Lato-Black-900.eot?#iefix" as="script">
  9.             <link rel="stylesheet" href="/fonts/Lato-Black-900.woff2" as="style">
  10.             <link rel="stylesheet" href="/fonts/Lato-Black-900.woff" as="script">
  11.             <link rel="stylesheet" href="/fonts/Lato-Black-900.ttf" as="script">
  12.             <link rel="stylesheet" href="/fonts/lato-v14-latin-900.svg#Lato" as="script"> #}
  13.             <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,700,900,italic,bolditalic&display=swap" type="text/css" />
  14.             <link type="image/x-icon" rel="icon" href="{{ asset('faviconte.ico') }}" />
  15.             <link rel="stylesheet" href="{{ asset('_css/bootstrap.min.css') }}" />
  16.             <link rel="stylesheet" href="{{ asset('_css/request_content.min.css') }}" />
  17.         {% endblock head_page %}
  18.     </head>
  19.     <body class="recovery">
  20.         {% if te.request.hasPreviousSession %}
  21.             {% for type, messages in app.session.flashbag.all() %}
  22.                 {% for message in messages %}
  23.                     <div class="flash-{{ type }}">
  24.                         {{ message }}
  25.                     </div>
  26.                 {% endfor %}
  27.             {% endfor %}
  28.         {% endif %}
  29.         <div class="wrap-recovery-login">
  30.             <div id="logoBox" class="logo-box">
  31.                 <a class="logo-img" href="{{ path('app_home') }}" title="{{ 'home_page' | trans }}"></a>
  32.                 {#<div class="slogan-block">{{ 'left_menu_slogan' | trans }}</div>#}
  33.             </div> 
  34.             {% block fos_user_content %}
  35.             {% endblock fos_user_content %}
  36.             <div class="reg-line"></div>
  37.         </div>
  38.         {% block fos_user_js %}
  39.         {% endblock fos_user_js %}
  40.     </body>
  41. </html>