app/Resources/FOSUserBundle/views/layout.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="UTF-8"/>
  5.     <meta content="width=device-width, initial-scale=1, maximum-scale=1, shrink-to-fit=no" name="viewport">
  6.     <title>{% block title %}Dattes{% endblock %}</title>
  7.     {% block stylesheets %}
  8.         <!-- Bootstrap CSS-->
  9.         <link href="{{ asset("assets/dist/modules/bootstrap/css/bootstrap.min.css") }}" rel="stylesheet">
  10.         <!-- General CSS Files -->
  11.         <link href="{{ asset("assets/dist/font-awesome/css/font-awesome.min.css") }}" rel="stylesheet"/>
  12.         <link href="{{ asset("assets/dist/modules/weather-icon/css/weather-icons.min.css") }}" rel="stylesheet"/>
  13.         <link href="{{ asset("assets/dist/modules/weather-icon/css/weather-icons-wind.min.css") }}" rel="stylesheet"/>
  14.         <!-- Google fonts - Poppins -->
  15.         <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:300,400,700">
  16.         <!-- CSS Libraries -->
  17.         <link href="{{ asset("assets/dist/modules/datatables/datatables.min.css") }}" rel="stylesheet"/>
  18.         <link href="{{ asset("assets/dist/modules/datatables/DataTables-1.10.16/css/dataTables.bootstrap4.min.css") }}"
  19.               rel="stylesheet"/>
  20.         <link href="{{ asset("assets/dist/modules/datatables/Select-1.2.4/css/select.bootstrap4.min.css") }}"
  21.               rel="stylesheet"/>
  22.         <!-- Template CSS -->
  23.         <link rel="stylesheet" href="{{ asset("assets/dist/css/style.default.css") }}" id="theme-stylesheet">
  24.         {% if  app.request.getLocale() == 'ar' %}
  25.             <link rel="stylesheet" href="{{ asset("assets/dist/modules/bootstrap/css/bootstrap-rtl.css") }}">
  26.         {% endif %}
  27.         <!-- Custom stylesheet - for your changes-->
  28.         <link rel="stylesheet" href="{{ asset("assets/dist/css/custom.css") }}">
  29.     {% endblock %}
  30.     <link href="https://fonts.googleapis.com/css?family=Rakkas" rel="stylesheet">
  31.     <link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}"/>
  32. </head>
  33. <body>
  34. <div class="page login-page">
  35.     {% if app.request.hasPreviousSession %}
  36.         {% for type, messages in app.session.flashbag.all() %}
  37.             {% for message in messages %}
  38.                 <div class="row justify-content-center">
  39.                     <div class="col-4">
  40.                         <div class="alert alert-{{ type }}  alert-dismissible">
  41.                             {{ message }}
  42.                         </div>
  43.                     </div>
  44.                 </div>
  45.             {% endfor %}
  46.         {% endfor %}
  47.     {% endif %}
  48.     <div class="container d-flex align-items-center">
  49.         <div class="form-holder">
  50.             <div class="row">
  51.                 <!-- Logo & Information Panel-->
  52.                 <div class="col-lg-6">
  53.                     <div class="info d-flex align-items-center">
  54.                         <div class="content">
  55.                             <div class="logo">
  56.                                 <h1>{{ 'bourse'|trans }}</h1>
  57.                             </div>
  58.                             <p>{{ 'pres'|trans }}</p>
  59.                         </div>
  60.                     </div>
  61.                 </div>
  62.                 <!-- Form Panel    -->
  63.                 <div class="col-lg-6 bg-white">
  64.                     <div class="form d-flex align-items-center">
  65.                         <div class="content">
  66.                             {% block fos_user_content %}
  67.                             {% endblock fos_user_content %}
  68.                         </div>
  69.                     </div>
  70.                 </div>
  71.             </div>
  72.             <div class="row ">
  73.                 <div class="col-12 text-center">
  74.                     <a href="{{ path('portail') }}"> < {{ 'home'|trans }}</a>
  75.                 </div>
  76.             </div>
  77.         </div>
  78.     </div>
  79. </div>
  80. {% block javascripts %}
  81.     <!-- General JS Scripts -->
  82.     <script src="{{ asset("assets/dist/modules/jquery/jquery.min.js") }}"></script>
  83.     <script src="{{ asset("assets/dist/modules/popper.js/umd/popper.min.js") }}"></script>
  84.     <script src="{{ asset("assets/dist/modules/bootstrap/js/bootstrap.min.js") }}"></script>
  85.     <script src="{{ asset("assets/dist/modules/jquery.cookie/jquery.cookie.js") }}"></script>
  86.     <!-- JS Libraies -->
  87.     <!-- Template JS File -->
  88.     <script>
  89.     $(".alert").fadeTo(9000, 500).slideUp(500, function(){
  90.         $(".alert").slideUp(500);
  91.     });
  92.     </script>
  93. {% endblock %}
  94. </body>
  95. </html>