templates/base_prompt.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.0">
  6.         <title>
  7.             {% if page_title is defined %}
  8.                 {{ page_title }}
  9.             {% else %}
  10.                 HealthyDiet
  11.             {% endif %}
  12.         </title>
  13.         <!-- Favicon -->
  14.         <link
  15.         rel="shortcut icon" href="{{ asset('images/favicon.ico') }}"/>
  16.         <!-- Font -->
  17.         <link
  18.         rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:200,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900">
  19.         <!-- css -->
  20.         <link rel="stylesheet" type="text/css" href="{{ asset('css/style.min.css') }}"/>
  21.         <style>
  22.             body,
  23.             html {
  24.                 height: 100%;
  25.                 margin: 0;
  26.                 padding: 0;
  27.             }
  28.             .background-image-fill {
  29.                 background-size: cover;
  30.                 background-position: center;
  31.                 height: 100%;
  32.                 width: 100%;
  33.                 display: flex;
  34.                 justify-content: center;
  35.                 align-items: center;
  36.                 flex-direction: column;
  37.             }
  38.             .centered-content {
  39.                 /* background-color: rgba(255, 255, 255, 0.8); */
  40.                 /* Add opacity to make content readable */
  41.                 padding: 20px;
  42.                 border-radius: 10px;
  43.                 max-width: 100%;
  44.                 text-align: center;
  45.                 display: flex;
  46.                 flex-direction: column;
  47.                 z-index: 3;
  48.             }
  49.         </style>
  50.     </head>
  51.     <body>
  52.         <div class="background-image-fill" style="background-image: url({{ asset('images/login-page-wp.jpg') }})">
  53.             <div class="bg-dark">
  54.                 <div class="content centered-content">
  55.                     <h2 style="font-size: 50px" class="text-white mb-20">Healthy<span style="color:#F26B23">Diet</span>
  56.                     </h2>
  57.                     <div>&nbsp;</div>
  58.                     {% block center_content %}{% endblock %}
  59.                     <div>&nbsp;</div>
  60.                 </div>
  61.             </div>
  62.             {# offset main content slightly above center by adding empty content below #}
  63.             <div style="height: 15%">&nbsp;</div>
  64.         </div>
  65.     </body>
  66. </html>