templates/auth_base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
    <html>
    <head>
        {% block head %}
            <meta charset="UTF-8">
            <meta http-equiv="X-UA-Compatible" content="IE=edge">
            <!-- Tell the browser to be responsive to screen width -->
            <meta name="viewport" content="width=device-width, initial-scale=1">
            <title>{% block title %}Log in{% endblock %}</title>
    
            {% block stylesheets %}
                <!-- Font Awesome -->
                <link rel="stylesheet" href=" /plugins/fontawesome-free/css/all.min.css">
                <!-- Ionicons -->
                <link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
                <!-- iCheck -->
                <link rel="stylesheet" href="/plugins/icheck-bootstrap/icheck-bootstrap.min.css">
                <!-- Theme style -->
                <link rel="stylesheet" href="/dist/css/adminlte.min.css">
                <!-- Google Font: Source Sans Pro -->
                <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
    
            {% endblock %}
        {% endblock %}
    </head>
    <body class="hold-transition login-page">
    <div class="login-box">
        <div class="login-logo">
            <a href="{{ path('index') }}"><b>Club</b> Dashboard</a>
        </div>
    
        <div class="card">
            {% block body %}{% endblock %}
        </div>
    
    </div>
    
    {% block javascripts %}
        <!-- jQuery -->
        <script src="{{ asset('plugins/jquery/jquery.min.js') }}"></script>
        <!-- Bootstrap 4 -->
        <script src="{{ asset('plugins/bootstrap/js/bootstrap.bundle.min.js') }}"></script>
        <!-- AdminLTE App -->
        <script src="{{ asset('dist/js/adminlte.js') }}"></script>
        <script>
            $(function() {
                {% if auto_login is defined and auto_login == true %}
                    $('#loginForm').submit();
                {% endif %}
            });
        </script>
    {% endblock %}
    </body>
    </html>