templates/base_security.html.twig line 1

  1. <!DOCTYPE html>
  2. <html lang="de">
  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="Martin Wenskus">
  8.     <meta name="generator" content="by Hand">
  9.     <title>{% block title %}Willkommen bei FSB!{% endblock %}</title>
  10.     <link rel="icon"
  11.       href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>FSB</text></svg>">
  12.     <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:300,400,400i,700&display=fallback">
  13.     {% block stylesheets %}
  14.     {{ encore_entry_link_tags('app') }}
  15.     {% endblock %}
  16.     {% block javascripts %}
  17.     {{ encore_entry_script_tags('app') }}
  18.     {% endblock %}
  19.     <style>
  20.       html,
  21.       body.form-signin {
  22.         height: 100%;
  23.       }
  24.       body {
  25.         display: flex;
  26.         align-items: center;
  27.         padding-top: 40px;
  28.         padding-bottom: 40px;
  29.         background-color: #989898;
  30.       }
  31.       .form-signin {
  32.         width: 100%;
  33.         padding: 15px;
  34.         margin: auto;
  35.       }
  36.       .form-signin .checkbox {
  37.         font-weight: 400;
  38.       }
  39.       .form-signin .form-floating:focus-within {
  40.         z-index: 2;
  41.       }
  42.       .form-signin input[type="email"] {
  43.         margin-bottom: -1px;
  44.         border-bottom-right-radius: 0;
  45.         border-bottom-left-radius: 0;
  46.       }
  47.       .form-signin input[type="password"] {
  48.         margin-bottom: 10px;
  49.         border-top-left-radius: 0;
  50.         border-top-right-radius: 0;
  51.       }
  52.     </style>
  53.   </head>
  54.   <body class="text-center">
  55.     <main class="" style="display: block !important;
  56.     position: absolute !important;
  57.     top: 0 !important;
  58.     left: 0 !important;
  59.     width: 100% !important;
  60.     height: 100% !important;
  61.     content: ' ' !important;
  62.     border-radius: inherit;background-color: rgba(0,0,0,0) !important;
  63.     background-image: url(/images/BannerManneraufDach-2880w.jpg) !important;
  64.     background-size:100% 100%;">
  65.       <div class="d-flex flex-row mb-3">
  66.         <div class="col-12 col-md-4 card position-absolute top-50 start-50 translate-middle">
  67.           <div class="card-body">
  68.             <h5 class="card-title">{{ 'FSB-Support-Tool'|trans({}, 'AdminLTEBundle') }}
  69.             </h5>
  70.             {% block login_box_msg %}
  71.             {% for flash_error in app.flashes('verify_email_error') %}
  72.             <div class="alert alert-danger" role="alert">{{ flash_error }}</div>
  73.             {% endfor %}
  74.             {% endblock %}
  75.             {% block login_form %}
  76.             <img class="mb-4" src="/images/logo.jpg" alt="" height="57">
  77.             <h1 class="h3 mb-3 fw-normal">Please sign in</h1>
  78.             <div class="form-floating">
  79.               <input type="email" class="form-control" id="floatingInput" placeholder="name@example.com">
  80.               <label for="floatingInput">Email address</label>
  81.             </div>
  82.             <div class="form-floating">
  83.               <input type="password" class="form-control" id="floatingPassword" placeholder="Password">
  84.               <label for="floatingPassword">Password</label>
  85.             </div>
  86.             <div class="checkbox mb-3">
  87.               <label>
  88.                 <input type="checkbox" value="remember-me"> Remember me
  89.               </label>
  90.             </div>
  91.             {% endblock %}
  92.             {% block login_actions %}
  93.             <button class="w-100 btn btn btn-primary" type="submit">Sign in</button>
  94.             {% endblock %}
  95.           </div>
  96.         </div>
  97.       </div>
  98.       <p class="text--white position-absolute top-100 start-50 translate-middle">&copy; 2021-2022
  99.       </p>
  100.     </main>
  101.   </body>
  102. </html>