templates/auth_base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     {% block head %}
  5.         <meta charset="UTF-8">
  6.         <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7.         <!-- Tell the browser to be responsive to screen width -->
  8.         <meta name="viewport" content="width=device-width, initial-scale=1">
  9.         <title>{% block title %}Log in{% endblock %}</title>
  10.         {% block stylesheets %}
  11.             <!-- Font Awesome -->
  12.             <link rel="stylesheet" href=" /plugins/fontawesome-free/css/all.min.css">
  13.             <!-- Ionicons -->
  14.             <link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
  15.             <!-- iCheck -->
  16.             <link rel="stylesheet" href="/plugins/icheck-bootstrap/icheck-bootstrap.min.css">
  17.             <!-- Theme style -->
  18.             <link rel="stylesheet" href="/dist/css/adminlte.min.css">
  19.             <!-- Google Font: Source Sans Pro -->
  20.             <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
  21.         {% endblock %}
  22.     {% endblock %}
  23. </head>
  24. <body class="hold-transition login-page">
  25. <div class="login-box">
  26.     <div class="login-logo">
  27.         <a href="{{ path('index') }}"><b>Club</b> Dashboard</a>
  28.     </div>
  29.     <div class="card">
  30.         {% block body %}{% endblock %}
  31.     </div>
  32. </div>
  33. {% block javascripts %}
  34.     <!-- jQuery -->
  35.     <script src="{{ asset('plugins/jquery/jquery.min.js') }}"></script>
  36.     <!-- Bootstrap 4 -->
  37.     <script src="{{ asset('plugins/bootstrap/js/bootstrap.bundle.min.js') }}"></script>
  38.     <!-- AdminLTE App -->
  39.     <script src="{{ asset('dist/js/adminlte.js') }}"></script>
  40.     <script>
  41.         $(function() {
  42.             {% if auto_login is defined and auto_login == true %}
  43.                 $('#loginForm').submit();
  44.             {% endif %}
  45.         });
  46.     </script>
  47. {% endblock %}
  48. </body>
  49. </html>