src/Cms/CoreBundle/Resources/views/setup/includes/main.html.twig line 1

Open in your IDE?
  1. {{ embed_title('SchoolNow', -100) }}
  2. {{ embed_script(assett('jquery1::/dist/jquery.min.js'), null, null, 'top') }}
  3. {{ embed_script(assett('bootstrap::/dist/js/bootstrap.min.js'), null, null, 'bottom') }}
  4. {{ embed_script(assett('breakpoints::/breakpoints.js'), null, null, 'bottom') }}
  5. {{ embed_style('//fonts.googleapis.com/css?family=Open+Sans:400,500,700|Montserrat:400,700') }}
  6. {{ embed_style(assett('font-awesome::/css/font-awesome.min.css')) }}
  7. {{ embed_style('/ui/css/ui.css?bust=' ~ cms.params.get('version.hash')) }}
  8. <style type="text/css">
  9.     .cs-error {
  10.         padding: 30px 15px;
  11.         background: none;
  12.     }
  13.     .cs-error-msg {
  14.         padding: 15px;
  15.         margin: 0 auto;
  16.         border: none;
  17.         border-radius: 5px;
  18.         text-align: center;
  19.     }
  20.     .cs-error-msg h1 {
  21.         font-family: 'Lato', sans-serif;
  22.         font-weight: 700;
  23.         font-size: 58px;
  24.         color: #008b44;
  25.         margin: 0;
  26.     }
  27.     .cs-error-msg h2 {
  28.         font-size: 28px;
  29.         font-weight: 700;
  30.         margin: 0 0 20px;
  31.     }
  32.     .cs-error-msg p {
  33.         font-size: 18px;
  34.         margin: 20px 0 0;
  35.         max-width: none;
  36.     }
  37.     .cs-error-msg .cs-error-report {
  38.         max-width: 480px;
  39.         font-size: 13px;
  40.         color: #666;
  41.         margin: 60px auto 0;
  42.     }
  43. </style>
  44. {{ body_attrs('append', 'class', 'cs-login') }}
  45. <div class="wrapper">
  46.     <div class="container" style="position: absolute; width: 100%; top: 150px; z-index: 9;">
  47.         <div class="row">
  48.             <div class="col-sm-8 col-sm-offset-2">
  49.                 <div class="panel panel-login">
  50.                     <div class="panel-heading">
  51.                         <h2 class="panel-login-title">
  52.                             <a class="h3 font-weight-normal link-text-color block" href="https://www.schoolnow.com">SchoolNow</a>
  53.                         </h2>
  54.                     </div>
  55.                     <div class="panel-body">
  56.                         <div class="row gutters-30">
  57.                             <div class="col-md-12">
  58.                                 {% block content %}{% endblock %}
  59.                             </div>
  60.                         </div>
  61.                     </div>
  62.                     <div class="panel-footer">
  63.                         <p>Copyright ©{{ 'now'|date('Y') }} SchoolNow. All rights reserved.</p>
  64.                     </div>
  65.                 </div>
  66.             </div>
  67.         </div>
  68.     </div>
  69. </div>