templates/base_auth.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html dir="ltr" lang="en">
  3. <head>
  4.     <meta charset="utf-8" />
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6.     <!-- Tell the browser to be responsive to screen width -->
  7.     <meta name="viewport" content="width=device-width, initial-scale=1" />
  8.     <meta name="description" content="" />
  9.     <meta name="author" content="" />
  10.     <!-- Favicon icon -->
  11.     <link rel="icon" type="image/png" sizes="32x32" href="{{ asset('/favicon-32x32.png') }}">
  12.     <title>Main Chain {% block title %}{% endblock %}</title>
  13.     <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
  14.     <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
  15.     <!--[if lt IE 9]>
  16.     <script type="text/javascript" src="{{ asset('libs/html5shiv/3.7.0/html5shiv.js') }}"></script>
  17.     <script type="text/javascript" src="{{ asset('libs/respond/1.4.2/respond.min.js') }}"></script>
  18.     <![endif]-->
  19.     {% block stylesheets %}
  20.         <!-- Custom CSS -->
  21.         <link href="{{ asset ('css/style.css') }}" rel="stylesheet" />
  22.         <link href="{{ asset ('css/app.css') }}" rel="stylesheet" />
  23.         <link href="{{ asset ('css/responsive.css') }}" rel="stylesheet" />
  24.     {% endblock %}
  25. </head>
  26. <body>
  27. <div class="main-wrapper">
  28.     <!-- ============================================================== -->
  29.     <!-- Preloader - style you can find in spinners.css -->
  30.     <!-- ============================================================== -->
  31.     <div class="preloader">
  32.         <div class="lds-ripple">
  33.             <div class="lds-pos"></div>
  34.             <div class="lds-pos"></div>
  35.         </div>
  36.     </div>
  37.     <!-- ============================================================== -->
  38.     <!-- Preloader - style you can find in spinners.css -->
  39.     <!-- ============================================================== -->
  40.     <!-- ============================================================== -->
  41.     <!-- Login box.scss -->
  42.     <!-- ============================================================== -->
  43.     <div class="auth-wrapper d-flex no-block justify-content-center align-items-center position-relative"
  44.             {#         style="background-image:url({{ asset('/img/background.jpg')}});background-size: cover; background-position:center center "#}
  45.     >
  46.         <div class="auth-box row text-center">
  47.             <div class="col-lg-6 col-md-5 modal-bg-img"
  48.                     {#                 style="background-image: url({{ asset('/img/signup4.jpg')}});"#}
  49.             >
  50.             </div>
  51.             <div class="col-lg-6 col-md-7 bg-white login-window">
  52.                 <div class="p-3 login-window-content">
  53.                     <img src="{{ asset('/img/logo.png')}}" width="150" alt="wrapkit" />
  54.                     {% block content %}
  55.                     {% endblock %}
  56.                 </div>
  57.             </div>
  58.             <div class="creditArea">
  59.                 <div class="version">MainChain v{{ MC_VERSION }} - <a target="_blank" href="https://www.vistory.com">Copyright ©{{ "now"|date("Y") }} Vistory</a></div>
  60.             </div>
  61.         </div>
  62.     </div>
  63.     <!-- ============================================================== -->
  64.     <!-- Login box.scss -->
  65.     <!-- ============================================================== -->
  66. </div>
  67. {% block javascripts %}
  68.     <!-- ============================================================== -->
  69.     <!-- All Required js -->
  70.     <!-- ============================================================== -->
  71.     <script src="{{ asset('libs/jquery/dist/jquery.min.js') }} "></script>
  72.     <script src="{{ asset('libs/popper.js/dist/umd/popper.min.js') }} "></script>
  73.     <script src="{{ asset('libs/bootstrap/dist/js/bootstrap.js')}} "></script>
  74.     <script src="{{ asset('js/feather.min.js') }}"></script>
  75.     {# custom JS #}
  76.     <script src="{{ asset('js/custom.min.js') }}"></script>
  77.     <script src="{{ asset('js/app.js') }}"></script>
  78.     <!-- ============================================================== -->
  79.     <!-- This page plugin js -->
  80.     <!-- ============================================================== -->
  81.     <script type="text/javascript" nonce="fb36db628485fc3a388a259581f9057d">
  82.         $(document).ready(function() {
  83.             $(".preloader ").fadeOut();
  84.         });
  85.     </script>
  86. {% endblock %}
  87. </body>
  88. </html>