templates/access.html.twig line 48

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="it">
  3. <head>
  4.   <meta charset="utf-8">
  5.   <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>{% block title %}{% endblock %}</title>
  7.   <!-- Google Font: Source Sans Pro -->
  8.   <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback">
  9.   <!-- Font Awesome -->
  10.   <link rel="stylesheet" href="{{ asset('AdminLTE-3.2.0/plugins/fontawesome-free/css/all.min.css') }}">
  11.   <!-- icheck bootstrap -->
  12.   <link rel="stylesheet" href="{{ asset('AdminLTE-3.2.0/plugins/icheck-bootstrap/icheck-bootstrap.min.css') }}">
  13.   <!-- Theme style -->
  14.   <link rel="stylesheet" href="{{ asset('AdminLTE-3.2.0/dist/css/adminlte.min.css') }}">
  15.   <style>
  16.   body{
  17.     background-image: url(./assets/Background1.png);
  18.     background-size: cover;
  19.     background-repeat: no-repeat;
  20.   }
  21.   
  22.   a{
  23.     color: red;
  24.   }
  25.   </style>
  26. </head>
  27. <body class="hold-transition register-page">
  28. <div class="register-box" style="width: 500px;">
  29.   <div class="card card-outline card-danger">
  30.     <div class="card-header text-center">
  31.       <p>        
  32.         <a href="#" class="h1">
  33.           <img class="animate" src="{{ asset('assets/Logo_Verticale.png')}}" alt="AiCommerceSuite" width="200">
  34.         </a>
  35.         <!--<a id="assistance" style=""> 
  36.                 <i class="nav-icon fab fa-rocketchat fa-3x text-success"></i>
  37.         </a>-->
  38.       </p>
  39.       <p>Hai problemi con il login e/o con la registrazione?<br />
  40.       Chiamaci subito al <a href="tel: +393938549427">3938549427</a></p>
  41.     </div>
  42.     <div class="card-body">
  43. {% block body %}
  44.  {% endblock %}
  45.     <!-- /.form-box -->
  46.   </div><!-- /.card -->
  47. </div>
  48. <!-- /.register-box -->
  49. <!-- jQuery -->
  50. <script src="{{ asset('AdminLTE-3.2.0/plugins/jquery/jquery.min.js') }}"></script>
  51. <!-- Bootstrap 4 -->
  52. <script src="{{ asset('AdminLTE-3.2.0/plugins/bootstrap/js/bootstrap.bundle.min.js') }}"></script>
  53. <!-- AdminLTE App -->
  54. <script src="{{ asset('AdminLTE-3.2.0/dist/js/adminlte.min.js') }}"></script>
  55. </body>
  56. </html>