templates/layout/_auth.html.twig line 1

  1. {% extends 'layout/master.html.twig' %}
  2. {% block layout %}
  3.     <!--begin::Root-->
  4.     <div class="d-flex flex-column flex-root" id="kt_app_root">
  5.         <!--begin::Wrapper-->
  6.         <div class="d-flex flex-column flex-lg-row flex-column-fluid">
  7.             <!--begin::Body-->
  8.             <div class="d-flex flex-column flex-lg-row-fluid w-lg-50 p-10 order-2 order-lg-1">
  9.                 <!--begin::Form-->
  10.                 <div class="d-flex flex-center flex-column flex-lg-row-fluid">
  11.                     <!--begin::Wrapper-->
  12.                     <div class="w-lg-500px p-10">
  13.                         <!--begin::Page-->
  14.                         {% block content %}{% endblock %}
  15.                         <!--end::Page-->
  16.                     </div>
  17.                     <!--end::Wrapper-->
  18.                 </div>
  19.                 <!--end::Form-->
  20.                 <!--begin::Footer-->
  21.                 <div class="d-flex flex-center flex-wrap px-5">
  22.                     <!--begin::Links-->
  23.                     <div class="d-flex fw-semibold text-primary fs-base">
  24.                         <a href="#" class="px-5" target="_blank">Terms</a>
  25.                         <a href="#" class="px-5" target="_blank">Plans</a>
  26.                         <a href="#" class="px-5" target="_blank">Contact Us</a>
  27.                     </div>
  28.                     <!--end::Links-->
  29.                 </div>
  30.                 <!--end::Footer-->
  31.             </div>
  32.             <!--end::Body-->
  33.             <!--begin::Aside-->
  34.             <div class="d-flex flex-lg-row-fluid w-lg-50 bgi-size-cover bgi-position-center order-1 order-lg-2" style="background-image: url({{ theme.image('auth/bg2.jpg') }})">
  35.                 <!--begin::Content-->
  36.                 <div class="d-flex flex-column flex-center py-7 py-lg-15 px-5 px-md-15 w-100">
  37.                     <!--begin::Logo-->
  38.                     <a href="/" class="mb-12">
  39.                         <img alt="Logo" src="{{ theme.image('logos/logo-smh.svg') }}" class="h-60px h-lg-75px"/>
  40.                     </a>
  41.                     <!--end::Logo-->
  42.                     <!--begin::Title-->
  43.                     <h1 class="d-none d-lg-block text-white fs-2qx fw-bolder text-center mb-7">
  44.                         Fast, Efficient and Productive
  45.                     </h1>
  46.                     <!--end::Title-->
  47.                     <!--begin::Text-->
  48.                     <div class="d-none d-lg-block text-white fs-base text-center">
  49.                         In this kind of post, <a href="#" class="opacity-75-hover text-warning fw-bold me-1">the blogger</a>
  50.                         introduces a person they’ve interviewed <br/> and provides some background information about
  51.                         <a href="#" class="opacity-75-hover text-warning fw-bold me-1">the interviewee</a>
  52.                         and their <br/> work following this is a transcript of the interview.
  53.                     </div>
  54.                     <!--end::Text-->
  55.                 </div>
  56.                 <!--end::Content-->
  57.             </div>
  58.             <!--end::Aside-->
  59.         </div>
  60.         <!--end::Wrapper-->
  61.     </div>
  62.     <!--end::Root-->
  63. {% endblock %}