templates/layout.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.     <meta charset="utf-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1">
  6.     <meta name="description" content="">
  7.     <title>.: COVID :.</title>
  8.     <link rel="canonical" href="https://tresorbenin.bj/login">
  9.     <!-- Bootstrap core CSS -->
  10.     <link href="{{ asset('assets/css/bootstrap.min.css')}}" rel="stylesheet">
  11.     <style>
  12.       body {
  13.         height: 100%;
  14.       }
  15.       body {
  16.         display: flex;
  17.         align-items: center;
  18.         padding-top: 40px;
  19.         padding-bottom: 40px;
  20.         background-color: #0397d5;
  21.       }
  22.       .form-signin {
  23.         width: 100%;
  24.         max-width: 330px;
  25.         padding: 15px;
  26.         margin: auto;
  27.       }
  28.       .form-signin .checkbox {
  29.         font-weight: 400;
  30.       }
  31.       .form-signin .form-floating:focus-within {
  32.         z-index: 2;
  33.       }
  34.       .form-signin input[type="email"] {
  35.         margin-bottom: -1px;
  36.         border-bottom-right-radius: 0;
  37.         border-bottom-left-radius: 0;
  38.       }
  39.       .form-signin input[type="password"] {
  40.         margin-bottom: 10px;
  41.         border-top-left-radius: 0;
  42.         border-top-right-radius: 0;
  43.       }
  44.     .bd-placeholder-img {
  45.     font-size: 1.125rem;
  46.     text-anchor: middle;
  47.     -webkit-user-select: none;
  48.     -moz-user-select: none;
  49.     user-select: none;
  50.     }
  51.       @media (min-width: 768px) {
  52.       .bd-placeholder-img-lg {
  53.       font-size: 3.5rem;
  54.       }
  55.     }
  56.     </style>
  57.     <!-- Custom styles for this template -->
  58.     <link href="signin.css" rel="stylesheet">
  59.   </head>
  60.   <body class="text-center">
  61.     <main class="container">
  62.         <div class="row">
  63.           <div class="col-md-3 mx-auto">
  64.             {% block body %}{% endblock %}
  65.           </div>
  66.         </div>
  67.     </main>
  68.   </body>
  69. </html>