templates/bundles/FOSUserBundle/layout.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="utf-8" />
  5.     <link rel="apple-touch-icon" sizes="76x76" href="../assets/img/apple-icon.png">
  6.     <link rel="icon" type="image/png" href="../assets/img/favicon.png">
  7.     <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  8.     <title>SeeHoo.Events</title>
  9.     <meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, shrink-to-fit=no' name='viewport' />
  10.     {#
  11.         <link rel="apple-touch-icon" sizes="180x180" href="{{ asset('/ico/apple-touch-icon.png') }}">
  12.         <link rel="icon" type="image/png" sizes="32x32" href="{{ asset('/ico/favicon-32x32.png') }}">
  13.         <link rel="icon" type="image/png" sizes="16x16" href="{{ asset('/ico/favicon-16x16.png') }}">
  14.         <link rel="manifest" href="{{ asset('/ico/site.webmanifest') }}">
  15.         <link rel="mask-icon" href="{{ asset('/ico/safari-pinned-tab.svg') }}" color="#ffffff">
  16.         <meta name="msapplication-TileColor" content="#f1efea">
  17.         <meta name="theme-color" content="#f1efea">
  18.     #}
  19.     {% block stylesheets %}
  20.         <link href="https://fonts.googleapis.com/css?family=Montserrat:400,700,200" rel="stylesheet" />
  21.         <link href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" rel="stylesheet">
  22.     {% endblock stylesheets %}
  23.     {{ encore_entry_link_tags('app') }}
  24. </head>
  25. <body class="security">
  26. <div class="wrapper wrapper-full-page ">
  27.     <div class="full-page section-image" filter-color="black" data-image="{{ asset('assets/images/Seehoo-Restaurant-LoginPage.jpg') }}">
  28.         <!--   you can change the color of the filter page using: data-color="blue | purple | green | orange | red | rose " -->
  29.         <div class="content">
  30.             <div class="container">
  31.                 <div class="col-lg-4 col-md-6 ml-auto mr-auto">
  32.                     {% if app.request.hasPreviousSession %}
  33.                         {% for type, messages in app.session.flashbag.all() %}
  34.                             {% for message in messages %}
  35.                                 <div class="alert alert-{{ type }}" role="alert">
  36.                                     {{ message }}
  37.                                 </div>
  38.                             {% endfor %}
  39.                         {% endfor %}
  40.                     {% endif %}
  41.                     {% block fos_user_content %}
  42.                     {% endblock fos_user_content %}
  43.                 </div>
  44.             </div>
  45.         </div>
  46.         <footer class="footer footer-black  footer-white ">
  47.             <div class="container-fluid">
  48.                 <div class="row">
  49.                     <nav class="footer-nav">
  50.                         <ul>
  51.                             <li>
  52.                                 <div class="version">v{{ shivas_app_version }}</div>
  53.                             </li>
  54.                             <li>
  55.                                 <a href="#" target="_blank">What's new</a>
  56.                             </li>
  57.                             <li>
  58.                                 <a href="#" target="_blank">Documentation</a>
  59.                             </li>
  60.                         </ul>
  61.                     </nav>
  62.                     <div class="credits ml-auto">
  63.                       <span class="copyright">
  64.                         Seehoo / SeeWhen ©
  65.                         <script>
  66.                           document.write(new Date().getFullYear())
  67.                         </script>, by <a href="https://www.wisetiger.co.uk/">Wisetiger</a>
  68.                       </span>
  69.                     </div>
  70.                 </div>
  71.             </div>
  72.         </footer>
  73.     </div>
  74. </div>
  75. {% block javascripts %}
  76.     {#    <script src="{{ asset('packages/ui.js') }}"></script>#}
  77.     {{ encore_entry_script_tags('app') }}
  78.     <script>
  79.         $(document).ready(function () {
  80.             $page = $('.full-page');
  81.             image_src = $page.data('image');
  82.             if (image_src !== undefined) {
  83.                 image_container = '<div class="full-page-background" style="background-image: url(' + image_src + ') "/>';
  84.                 $page.append(image_container);
  85.             }
  86.         });
  87.     </script>
  88. {% endblock javascripts %}
  89. {% block modals %}{% endblock modals %}
  90. </body>
  91. </html>