templates/application/auth-layout.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="ru">
  3. <head>
  4.     <meta charset="utf-8">
  5.     <title>RDC</title>
  6.     <meta name="description" content="">
  7.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  8.     <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=0">
  9.     <link rel="stylesheet" href="/css/style.css?2" />
  10. </head>
  11. <body>
  12.     {% block content %}
  13.     {% endblock %}
  14. <link rel="stylesheet" href="/css/fancybox.css" />
  15. <script src="/js/jquery-3.6.0.min.js"></script>
  16. <script src="/js/fancybox.umd.js"></script>
  17. <script src="/js/imask.min.js"></script>
  18. <script src="/js/script.js"></script>
  19. <script>
  20.     function popupAlert(text) {
  21.         new Fancybox([
  22.             {
  23.                 src: text,
  24.                 type: "html",
  25.             },
  26.         ]);
  27.     }
  28.     {% if message is defined and message %}
  29.     popupAlert({{ message|json_encode|raw }});
  30.     {% endif %}
  31. </script>
  32. {% block scripts %}
  33. {% endblock %}
  34. </body>
  35. </html>