templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="{{ app.request.locale }}">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>
  6.         {% block title %}Connexion{% endblock %} | Handicap International
  7.     </title>
  8.     <meta name="robots" content="noindex, nofollow" />
  9.     <link rel="preconnect" href="https://fonts.googleapis.com">
  10.     <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  11.     <link href="https://fonts.googleapis.com/css2?family=Nunito:wght@700&display=swap" rel="stylesheet">
  12.     <style>
  13.         .body {
  14.             width: 100vw;
  15.             height: 100vh;
  16.             overflow: hidden;
  17.             display: flex;
  18.             flex-direction: column;
  19.             justify-content: center;
  20.             align-items: center;
  21.             background-color: #006CBB;
  22.             color: white;
  23.             font-family: 'Nunito', sans-serif;
  24.         }
  25.         .main {
  26.             max-width: 480px;
  27.             width: 100%;
  28.         }
  29.         .logo {
  30.             display: block;
  31.             margin: 0 auto;
  32.         }
  33.         .main-content {
  34.             display: flex;
  35.             align-items: center;
  36.             justify-content: center;
  37.             flex-direction: column;
  38.             text-align: center;
  39.         }
  40.         a {
  41.             color: #FFDF00;
  42.         }
  43.         fieldset {
  44.             border: 0;
  45.         }
  46.         fieldset legend {
  47.             display: none;
  48.         }
  49.         fieldset > div > div {
  50.             padding: 8px 0;
  51.         }
  52.         fieldset label {
  53.             margin-right: 8px;
  54.         }
  55.     </style>
  56. </head>
  57. <body class="body">
  58.     <main class="main">
  59.         <img src="{{ asset('static/img/logo.svg') }}" alt="logo handicap international" class="logo">
  60.         {% block body %}
  61.         {% endblock %}
  62.     </main>
  63.     {% block javascripts %}
  64.         {{ encore_entry_script_tags('app') }}
  65.     {% endblock %}
  66. </body>
  67. </html>