templates/login/loginBase.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <title>
  5.         {% set customerAccountTitle = 'Overseas Network' %}
  6.         {% if app.session.get("customerAccountDomain") %}
  7.             {% set customerAccountDomain = app.session.get("customerAccountDomain") %}
  8.             {% set customerAccountTitle = customerAccountDomain.name %}
  9.         {% endif %}
  10.         {% block title %} {{customerAccountTitle}} - Login {% endblock %}
  11.     </title>
  12.     <meta charset="utf-8">
  13.     <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimal-ui">
  14.     <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  15.     <meta name="description" content="" />
  16.     <meta name="keywords" content="">
  17.     <meta name="author" content="Ronald" />
  18.     {% block stylesheets %}
  19.         <link rel="stylesheet" href="{{ asset('css/app.css') }}">
  20.         <link rel="stylesheet" href="{{ asset('css/style.css') }}">
  21.         <link rel="stylesheet" href="{{ asset('css/styles.css') }}">
  22.         <link rel="stylesheet" href="{{ asset('css/login.css') }}">
  23.         {% include 'reusable/_domainCss.html.twig'%}
  24.     {% endblock %}
  25.     {% include 'reusable/favico.html.twig' %}
  26. </head>
  27. <body>
  28. <!-- System Messages -->
  29. {#{% for message in app.flashes('error') %}#}
  30. {#    <div class="alert alert-danger">{{ message }}</div>#}
  31. {#{% endfor %}#}
  32. {#{% for message in app.flashes('success') %}#}
  33. {#    <div class="alert alert-success">{{ message }}</div>#}
  34. {#{% endfor %}#}
  35. {% if app.session.getFlashBag.has('info') %}
  36.     <div class="wrapper alert alert-info alert-dismissible fade show" role="alert">
  37.         <strong><i class="fas fa-info-circle"></i> Info!</strong>
  38.         {% for msg in app.session.getFlashBag.get('info') %}
  39.             <p> {{ msg }} </p>
  40.         {% endfor %}
  41.         <button type="button" class="close" data-dismiss="alert" aria-label="Close">
  42.             <span aria-hidden="true">&times;</span>
  43.         </button>
  44.     </div>
  45. {% endif %}
  46. {% if app.session.getFlashBag.has('success') %}
  47.     <div class="wrapper alert alert-success alert-dismissible fade show" role="alert">
  48.         <strong><i class="fas fa-check-circle"></i> Success!</strong>
  49.         {% for msg in app.session.getFlashBag.get('success') %}
  50.             <p> {{ msg }} </p>
  51.         {% endfor %}
  52.         <button type="button" class="close" data-dismiss="alert" aria-label="Close">
  53.             <span aria-hidden="true">&times;</span>
  54.         </button>
  55.     </div>
  56. {% endif %}
  57. {% if app.session.getFlashBag.has('error') %}
  58.     <div class="wrapper alert alert-error alert-dismissible fade show" role="alert">
  59.         <strong><i class="fas fa-exclamation-circle"></i> Error!</strong>
  60.         {% for msg in app.session.getFlashBag.get('error') %}
  61.             <p> {{ msg }} </p>
  62.         {% endfor %}
  63.         <button type="button" class="close" data-dismiss="alert" aria-label="Close">
  64.             <span aria-hidden="true">&times;</span>
  65.         </button>
  66.     </div>
  67. {% endif %}
  68. {% if app.session.getFlashBag.has('warning') %}
  69.     <div class="wrapper alert alert-warning alert-dismissible fade show" role="alert">
  70.         <strong><i class="fas fa-exclamation-triangle"></i> Warning!</strong>
  71.         {% for msg in app.session.getFlashBag.get('warning') %}
  72.             <p> {{ msg }} </p>
  73.         {% endfor %}
  74.         <button type="button" class="close" data-dismiss="alert" aria-label="Close">
  75.             <span aria-hidden="true">&times;</span>
  76.         </button>
  77.     </div>
  78. {% endif %}
  79. <!-- End System Messages -->
  80. {% block body %}
  81. {% endblock %}
  82. {% include 'login/_footerSection.html.twig'%}
  83. {#{% include "appParts/footer.html.twig" %}#}
  84. {% block  javascripts %}
  85.     {% include "reusable/baseJs.html.twig" %}
  86.     <!-- Required Js -->
  87.     <script src="{{ asset('js/plugins/bootstrap.min.js') }}"></script>
  88.     <script src="{{ asset('js/plugins/bootstrap-slider.min.js') }}"></script>
  89.     <script>
  90.         $(".alert-success").fadeTo(10000, 500).slideUp(500, function(){
  91.             $("#success-alert").slideUp(500);
  92.         });
  93.     </script>
  94. {% endblock %}
  95. </body>
  96. </html>