templates/base_security.html.twig line 1

Open in your IDE?
  1. <!--
  2. =========================================================
  3. * Base Clean Template - No Nav, no menus, just content. based on Soft UI Dashboard - v1.0.1
  4. =========================================================
  5. * Base on: https://www.creative-tim.com/product/soft-ui-dashboard
  6. * Copyright 2021 Edgebox (https://www.edgebox.io.com)
  7. * Licensed under MIT (https://github.com/creativetimofficial/soft-ui-dashboard/blob/master/LICENSE.md)
  8. =========================================================
  9. * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  10. -->
  11. <!DOCTYPE html>
  12. <html lang="en">
  13. <head>
  14.   <meta charset="utf-8" />
  15.   <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  16.   <link rel="apple-touch-icon" sizes="76x76" href="/assets/img/apple-icon.png">
  17.   <link rel="icon" type="image/png" href="/assets/img/favicon.png">
  18.   <title>
  19.     Edgebox | {% block title %}Account{% endblock title %}
  20.   </title>
  21.   <!--     Fonts and icons     -->
  22.   <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700" rel="stylesheet" />
  23.   <!-- CSS Files -->
  24.   <link id="pagestyle" href="/assets/css/soft-ui-dashboard.css?v=1.0.1" rel="stylesheet" />
  25. </head>
  26. <body class="bg-gray-100">
  27.     {% block content %}
  28.     {% endblock content %}
  29. </body>
  30. </html>