templates/layout.html.twig line 1

Open in your IDE?
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="utf-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1">
  6.     <meta name="description" content="">
  7.     {#    <meta name="author" content="Mark Otto, Jacob Thornton, and Bootstrap contributors">#}
  8.     {#    <meta name="generator" content="Hugo 0.88.1">#}
  9.     <title>{% block title %}Leiratkozók{% endblock %}</title>
  10.     {% block stylesheets %}
  11.         {{ encore_entry_link_tags('app') }}
  12.     {% endblock %}
  13.     <link rel="stylesheet" href="{{ asset('bundles/easyadmin/app.css') }}">
  14.     {% block javascripts %}
  15.         {{ encore_entry_script_tags('app') }}
  16.     {% endblock %}
  17.     <link rel="canonical" href="https://getbootstrap.com/docs/5.1/examples/sign-in/">
  18.     <!-- Bootstrap core CSS -->
  19.     {#    <link href="/docs/5.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">#}
  20.     {#    <!-- Favicons -->#}
  21.     {#    <link rel="apple-touch-icon" href="/docs/5.1/assets/img/favicons/apple-touch-icon.png" sizes="180x180">#}
  22.     {#    <link rel="icon" href="/docs/5.1/assets/img/favicons/favicon-32x32.png" sizes="32x32" type="image/png">#}
  23.     {#    <link rel="icon" href="/docs/5.1/assets/img/favicons/favicon-16x16.png" sizes="16x16" type="image/png">#}
  24.     {#    <link rel="manifest" href="/docs/5.1/assets/img/favicons/manifest.json">#}
  25.     {#    <link rel="mask-icon" href="/docs/5.1/assets/img/favicons/safari-pinned-tab.svg" color="#7952b3">#}
  26.     {#    <link rel="icon" href="/docs/5.1/assets/img/favicons/favicon.ico">#}
  27.     {#    <meta name="theme-color" content="#7952b3">#}
  28.     <style>
  29.         .bd-placeholder-img {
  30.             font-size: 1.125rem;
  31.             text-anchor: middle;
  32.             -webkit-user-select: none;
  33.             -moz-user-select: none;
  34.             user-select: none;
  35.         }
  36.         @media (min-width: 768px) {
  37.             .bd-placeholder-img-lg {
  38.                 font-size: 3.5rem;
  39.             }
  40.         }
  41.         html,
  42.         body {
  43.             height: 100%;
  44.         }
  45.         body {
  46.             display: flex;
  47.             align-items: center;
  48.             padding-top: 40px;
  49.             padding-bottom: 40px;
  50.             background-color: #f5f5f5;
  51.         }
  52.         .form-signin {
  53.             width: 100%;
  54.             max-width: 330px;
  55.             padding: 15px;
  56.             margin: auto;
  57.         }
  58.         .form-signin .checkbox {
  59.             font-weight: 400;
  60.         }
  61.         .form-signin .form-floating:focus-within {
  62.             z-index: 2;
  63.         }
  64.         .form-signin input[type="email"] {
  65.             margin-bottom: -1px;
  66.             border-bottom-right-radius: 0;
  67.             border-bottom-left-radius: 0;
  68.         }
  69.         .form-signin input[type="password"] {
  70.             margin-bottom: 10px;
  71.             border-top-left-radius: 0;
  72.             border-top-right-radius: 0;
  73.         }
  74.     </style>
  75.     <!-- Custom styles for this template -->
  76.     <link href="signin.css" rel="stylesheet">
  77. </head>
  78. <body class="text-center">
  79. {% for flash in app.flashes('success') %}
  80.     <div class="alert alert-success">{{ flash }}</div>
  81. {% endfor %}
  82. {% for flash in app.flashes('error') %}
  83.     <div class="alert alert-danger">{{ flash }}</div>
  84. {% endfor %}
  85. {% block body %}{% endblock %}
  86. </body>
  87. </html>