templates/default/default.html.twig line 1

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.0">
  6.     <title>Reindirizzamento...</title>
  7.     
  8.     <meta http-equiv="refresh" content="0;url=/admin/login">
  9.     
  10.     <script>
  11.         window.location.replace('/admin/login');
  12.     </script>
  13.     
  14.     <style>
  15.         body {
  16.             font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  17.             display: flex;
  18.             justify-content: center;
  19.             align-items: center;
  20.             height: 100vh;
  21.             margin: 0;
  22.             background-color: #f9fafb;
  23.             color: #374151;
  24.         }
  25.         .message {
  26.             text-align: center;
  27.             padding: 20px;
  28.         }
  29.         a {
  30.             color: #6428b4;
  31.             text-decoration: none;
  32.         }
  33.         a:hover {
  34.             text-decoration: underline;
  35.         }
  36.     </style>
  37. </head>
  38. <body>
  39.     <div class="message">
  40.         <p>Reindirizzamento alla pagina di login...</p>
  41.         <p>Se non vieni reindirizzato automaticamente, <a href="/admin/login">clicca qui</a>.</p>
  42.     </div>
  43. </body>
  44. </html>