templates/AdminCustom/Layout/loading.html.twig line 1

Open in your IDE?
  1. <div id="loadingScreen" class="loading-screen {% if showLoading is not defined %}d-none{% endif %}">
  2.     <div class="card">
  3.         <div class="card-body">
  4.             <img src="{{ asset('assets/shop/images/spinner.gif') }}" alt="loading" style="width: 75px"/>
  5.             <div id="autoInitRequiredMessage" class="d-none">
  6.                 <h3>Este necesara reinitializarea automata a vinietelor deoarece comanda este mai veche de 2 ore.</h3>
  7.             </div>
  8.             <h5>Vă rugăm așteptați</h5>
  9.         </div>
  10.     </div>
  11. </div>
  12. <style>
  13.     .loading-screen {
  14.         display: flex;
  15.         flex-direction: column;
  16.         justify-content: center;
  17.         align-items: center;
  18.         text-align: center;
  19.         min-height: 100vh;
  20.         z-index: 999;
  21.         position: fixed;
  22.         background-color: rgba(0,0,0,0.7);
  23.         opacity: 100%;
  24.         width: 100%;
  25.         height: 100%;
  26.     }
  27. </style>