templates/layouts/login.html.twig line 22

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <title>{% block title %}CMSF | Log in{% endblock %}</title>
  7.     <!-- Tell the browser to be responsive to screen width -->
  8.     <meta name="viewport" content="width=device-width, initial-scale=1">
  9.     {% block stylesheets %}
  10.         {{ encore_entry_link_tags('app') }}
  11.     {% endblock %}
  12.     <!-- Ionicons -->
  13.     <link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
  14.     <!-- Google Font: Source Sans Pro -->
  15.     <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
  16. </head>
  17. <body class="hold-transition login-page">
  18. <div class="login-box">
  19.     <div class="login-logo">
  20.         <a href="#"><b>SACO</b> EDUCATION</a>
  21.     </div>
  22.     {% block body %}
  23.     {% endblock %}
  24. </div>
  25. <!-- /.login-box -->
  26. {% block javascripts %}
  27.     {{ encore_entry_script_tags('app') }}
  28. {% endblock %}
  29. </body>
  30. </html>