templates/base_login.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="{{ app.request.locale }}">
  3.     <head>
  4.         <meta charset="utf-8">
  5.         <meta name="viewport" content="width=device-width, initial-scale=1">
  6.         <title>{% block title %}Admin bnbguests{% endblock %}</title>
  7.         {% block stylesheets %}
  8.         <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback">
  9.         <link rel="stylesheet" href="/plugins/fontawesome-free/css/all.min.css">
  10.         <link rel="stylesheet" href="/plugins/icheck-bootstrap/icheck-bootstrap.min.css">
  11.         <link rel="stylesheet" href="/dist/css/adminlte.min.css">
  12.         <link rel="stylesheet" href="/custom.css?v=4.0{{ date().timestamp }}">
  13.         <link rel="icon" href="/imgs/favicon3.png" sizes="32x32" />
  14.         <link rel="icon" href="/imgs/favicon3.png" sizes="192x192" />
  15.         <link rel="apple-touch-icon" href="/imgs/favicon3.png" />
  16.         <meta name="msapplication-TileImage" content="/imgs/favicon3.png" />
  17.         {% endblock %}
  18.     </head>
  19.     <body id="{% block body_id %}{% endblock %}" class="hold-transition login-page bnb">
  20.         <div class="login-box">
  21.             <div class="login-logo">
  22.                 <a href="{{ path('homepage') }}"><b>{% block label_login %}Admin{% endblock %}</b> <img src="/imgs/logo_full.png"></a>
  23.             </div>
  24.             <!-- /.login-logo -->
  25.             <div class="card">
  26.                 {% block content %}
  27.                 {% endblock %}
  28.             </div>
  29.         </div>
  30.     {% block scripts %}
  31.         <script src="/plugins/jquery/jquery.min.js"></script>
  32.         <script src="/plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
  33.         <script src="/dist/js/adminlte.min.js"></script>
  34.         <script src="/plugins/jquery/jquery.mask.js"></script>
  35.         <script>
  36.             jQuery(document).ready(function($) {
  37.                 $('.phone').mask("(00) 0000-00009");
  38.                 $('.cpf').mask('000.000.000-00');
  39.             });
  40.         </script>
  41.         {% endblock %}
  42.     </body>
  43. </html>