templates/reset_password/resetbase.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <!--[if IE 8]> <html lang="en" class="ie8"> <![endif]-->
  3. <!--[if !IE]><!-->
  4. <html lang="en">
  5.     <!--<![endif]-->
  6.     <head>
  7.         
  8.         <meta charset="utf-8" />
  9.         <title>Cloud Channel Platform</title>
  10.         {#
  11.         <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
  12.         <meta content="" name="description" />
  13.         <meta content="" name="author" />
  14.         #}
  15.              
  16.         <link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}" />
  17.         <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700" rel="stylesheet" />        
  18.         {#<link href="{{ asset('/plugins/jquery-ui/jquery-ui.min.css') }}" rel="stylesheet" />#}       
  19.         <link href="{{ asset('/plugins/theme/bootstrap/4.0.0/css/bootstrap.min.css') }}" rel="stylesheet" />        
  20.         {#<link href="{{ asset('/plugins/font-awesome/5.0/css/fontawesome-all.min.css') }}" rel="stylesheet" />#}
  21.         {#<link href="{{ asset('/plugins/animate/animate.min.css') }}" rel="stylesheet" />#}
  22.         <link href="{{ asset('/css/theme/style-responsive.min.css') }}" rel="stylesheet" />
  23.         {#<link href="{{ asset('/css/default/theme/default.css') }}" rel="stylesheet" id="theme" />#}      
  24.         <link href="{{ asset('/css/theme/style.min.css') }}" rel="stylesheet" />
  25.       
  26.         {#
  27.         <script src="{{ asset('assets/plugins/pace/pace.min.js') }}"></script>
  28.         <script src="{{ asset('assets/plugins/jquery/jquery-3.2.1.min.js') }}"></script>
  29.         <script src="{{ asset('assets/plugins/jquery-ui/jquery-ui.min.js') }}"></script>
  30.         <script src="{{ asset('assets/plugins/bootstrap/4.0.0/js/bootstrap.bundle.min.js') }}"></script>
  31.         <!--[if lt IE 9]>
  32.                 <script src="{{ asset('assets/crossbrowserjs/html5shiv.js') }}"></script>
  33.                 <script src="{{ asset('assets/crossbrowserjs/respond.min.js') }}"></script>
  34.                 <script src="{{ asset('assets/crossbrowserjs/excanvas.min.js') }}"></script>
  35.         <![endif]-->
  36.         <script src="{{ asset('assets/plugins/slimscroll/jquery.slimscroll.min.js') }}"></script>
  37.         <script src="{{ asset('assets/plugins/js-cookie/js.cookie.js') }}"></script>
  38.         <script src="{{ asset('assets/js/theme/default.min.js') }}"></script>
  39.         <script src="{{ asset('assets/js/apps.min.js') }}"></script>        
  40.         #}
  41.         
  42.         <script src="{{ asset('/js/katy_logo.js') }}"></script>
  43.         <style>
  44.             body{
  45.                 background-color:#EEEEEE;
  46.                 margin: 0px;
  47.                 height: 100%;
  48.                 overflow: hidden;
  49.             }
  50.             #lottie{
  51.                 background-color:#EEEEEE;
  52.                 width:100%;
  53.                 height:100%;
  54.                 display:block;
  55.                 overflow: hidden;
  56.                 transform: translate3d(0,0,0);
  57.                 text-align: center;
  58.                 opacity: 1;
  59.             }
  60.         </style>        
  61.     </head>
  62.     <body class="pace-top bg-white  pace-done" style="background-color: #eeeeee !important">
  63.         <div id="page-container" class="fade show">
  64.             <div class="login login-with-news-feed">
  65.                 <div class="news-feed">
  66.                     <div id="lottie"></div>
  67.                     {#<script src="{{ asset('/js/katy_logo_render.js') }}"></script>#}
  68.                 </div>
  69.                 <div class="right-content">
  70.                     <div class="login-header">
  71.                         <div class="brand">
  72.                             <div class="header-logo" style="text-align: center">
  73.                                 {#<img src="{{ asset('images/logo/katy_gcn.png') }}" alt="" style=" height: 70px;"/>#}
  74.                             </div>
  75.                         </div>
  76.                     </div>
  77.                     <div class="login-content" id="login">
  78.                         {% block reset %}
  79.                         {% endblock %}
  80.                     </div>
  81.                 </div>
  82.             </div>
  83.         </div>    
  84.     </body>
  85.     
  86. </html>