templates/security/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" />
  5. <title>{% block title %}Welcome!{% endblock %}</title>
  6. <link rel="icon" type="image/x-icon" href="{{ asset('assets/img/ohau_logo.png') }}"/>
  7. <link rel="stylesheet" href="{{ asset('assets/plugins/bootstrap-4.1.1/css/bootstrap.min.css') }}">
  8. <link rel="stylesheet" href="{{ asset('assets/plugins/fontawesome-free-5.3.1-web/css/all.min.css') }}">
  9. <link rel="stylesheet" href="{{ asset('fos/plugins/jquery-easyui-1.5.5.4/themes/bootstrap/easyui.css') }}">
  10. <link rel="stylesheet" type="text/css" href="{{ asset('fos/plugins/jquery-easyui-1.5.5.4/themes/icon.css') }}">
  11. <link rel="stylesheet" type="text/css" href="{{ asset('fos/plugins/jquery-easyui-1.5.5.4/themes/color.css') }}">
  12. {% block stylesheets %}
  13. {% endblock %}
  14. </head>
  15. <body>
  16. {% block main %}
  17. {% block responseflash %}
  18. {% for flash_message in app.session.flashBag.get('success') %}
  19. <div class="alert alert-success alert-dismissable fade in pro">
  20. <a href="#" class="close" data-dismiss="alert" aria-label="close">×</a>
  21. <strong>Success:</strong> {{ flash_message }}
  22. </div>
  23. {% endfor %}
  24. {% for flash_message in app.session.flashBag.get('warning') %}
  25. <div class="alert alert-warning alert-dismissable fade in pro">
  26. <a href="#" class="close" data-dismiss="alert" aria-label="close">×</a>
  27. <strong>Warning: </strong> {{ flash_message }}
  28. </div>
  29. {% endfor %}
  30. {% for flash_message in app.session.flashBag.get('error') %}
  31. <div class="alert alert-danger alert-dismissable fade in pro">
  32. <a href="#" class="close" data-dismiss="alert" aria-label="close">×</a>
  33. <strong>Error:</strong> {{ flash_message }}
  34. </div>
  35. {% endfor %}
  36. {% endblock %}
  37. {% endblock %}
  38. <script src="{{ asset('assets/plugins/jquery-easyui-1.5.5.4/jquery.min.js') }}"></script>
  39. <script src="{{ asset('assets/plugins/jquery-easyui-1.5.5.4/jquery.easyui.min.js') }}"></script>
  40. <!-- Core Bootstrap Script -->
  41. <script src="{{ asset('assets/plugins/bootstrap-4.1.1/js/bootstrap.min.js') }}"></script>
  42. <script type="text/javascript" src="{{ asset('assets/plugins/jquery-easyui-1.5.5.4/datagrid-filter.js') }}"></script>
  43. <script type="text/javascript" src="{{ asset('assets/plugins/jquery-easyui-1.5.5.4/datagrid-groupview.js') }}"></script>
  44. <script type="application/javascript" src="{{ asset('assets/plugins/jquery-easyui-1.5.5.4/datagrid-detailview.js') }}"></script>
  45. <script src="{{ asset('assets/plugins/jquery-easyui-1.5.5.4/plugins/jquery.maskedbox.js') }}"></script>
  46. <script type="text/javascript" src="{{ asset('assets/plugins/jquery.mask.min.js') }}"></script>
  47. {% block javascripts %}
  48. {% endblock %}
  49. </body>
  50. </html>