templates/security/login.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html 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="16x16" href="../assets/images/favicon.png">
  12.     <title>Grid - The Power To Change</title>
  13.     <!-- page css -->
  14.     <link href="{{ asset('css/pages/login-register-lock.css') }}" rel="stylesheet">
  15.     <!-- Custom CSS -->
  16.     <link href="{{ asset('css/style.min.css') }}" rel="stylesheet">
  17.     <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
  18.     <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
  19.     <!--[if lt IE 9]>
  20.     <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
  21.     <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
  22.     <![endif]-->
  23. </head>
  24. <body class="skin-default card-no-border">
  25. <!-- ============================================================== -->
  26. <!-- Preloader - style you can find in spinners.css -->
  27. <!-- ============================================================== -->
  28. <div class="preloader">
  29.     <div class="loader">
  30.         <div class="loader__figure"></div>
  31.         <p class="loader__label">Elite admin</p>
  32.     </div>
  33. </div>
  34. <!-- ============================================================== -->
  35. <!-- Main wrapper - style you can find in pages.scss -->
  36. <!-- ============================================================== -->
  37. <section id="wrapper">
  38.     <div class="login-register" style="background-image:url(../assets/images/background/login-register.jpg);">
  39.         <div class="login-box card">
  40.             <div class="card-body">
  41.                 <form method="post" class="form-horizontal form-material" id="loginform" action="{{ path('login') }}">
  42.                     <h3 class="text-center m-b-20">Sign In</h3>
  43.                     <div class="form-group ">
  44.                         <div class="col-xs-12">
  45.                             <input class="form-control"  name="_username"  type="text" required="" placeholder="Username"> </div>
  46.                     </div>
  47.                     <div class="form-group">
  48.                         <div class="col-xs-12">
  49.                             <input class="form-control" name="_password"  type="password" required="" placeholder="Password"> </div>
  50.                     </div>
  51.                     <div class="form-group row">
  52.                         <div class="col-md-12">
  53.                             <div class="d-flex no-block align-items-center">
  54.                                 <div class="custom-control custom-checkbox">
  55.                                 </div>
  56.                                 <div class="ml-auto">
  57.                                     <a style="color: #0b51c5" href="javascript:void(0)" id="to-recover" class="text-muted"><i class="fas fa-lock m-r-5"></i> Forgot pwd?</a>
  58.                                 </div>
  59.                             </div>
  60.                         </div>
  61.                     </div>
  62.                     <div class="form-group text-center">
  63.                         <div class="col-xs-12 p-b-20">
  64.                             <button class="btn btn-block btn-lg btn-info btn-rounded" type="submit">Log In</button>
  65.                         </div>
  66.                     </div>
  67.                 </form>
  68.                 <form class="form-horizontal" id="recoverform"  method="post" action="{{ path('sendRestPassEmail') }}">
  69.                     <div class="form-group ">
  70.                         <div class="col-xs-12">
  71.                             <h3>Recover Password</h3>
  72.                             <p class="text-muted">Enter your Email and instructions will be sent to you! </p>
  73.                         </div>
  74.                     </div>
  75.                     <div class="form-group ">
  76.                         <div class="col-xs-12">
  77.                             <input name="email" class="form-control" type="text" required="" placeholder="Email"> </div>
  78.                     </div>
  79.                     <div class="form-group text-center m-t-20">
  80.                         <div class="col-xs-12">
  81.                             <button class="btn btn-primary btn-lg btn-block text-uppercase waves-effect waves-light" type="submit">Reset</button>
  82.                         </div>
  83.                     </div>
  84.                 </form>
  85.             </div>
  86.         </div>
  87.     </div>
  88. </section>
  89. <!-- ============================================================== -->
  90. <!-- End Wrapper -->
  91. <!-- ============================================================== -->
  92. <!-- ============================================================== -->
  93. <!-- All Jquery -->
  94. <!-- ============================================================== -->
  95. <script src="{{ asset('assets/node_modules/jquery/jquery-3.2.1.min.js') }}"></script>
  96. <!-- Bootstrap tether Core JavaScript -->
  97. <script src="{{ asset('assets/node_modules/popper/popper.min.js') }}"></script>
  98. <script src="{{ asset('assets/node_modules/bootstrap/dist/js/bootstrap.min.js') }}"></script>
  99. <!--Custom JavaScript -->
  100. <script type="text/javascript">
  101.     $(function() {
  102.         $(".preloader").fadeOut();
  103.     });
  104.     $(function() {
  105.         $('[data-toggle="tooltip"]').tooltip()
  106.     });
  107.     // ==============================================================
  108.     // Login and Recover Password
  109.     // ==============================================================
  110.     $('#to-recover').on("click", function() {
  111.         $("#loginform").slideUp();
  112.         $("#recoverform").fadeIn();
  113.     });
  114. </script>
  115. </body>
  116. </html>