templates/default/index.html.twig line 1

  1. <html lang="en">
  2. <head>
  3.     <title>System wewnętrzny Grupa Format</title>
  4.     <link rel="shortcut icon" href="/favicon.ico">
  5.     <meta charset="UTF-8">
  6.     <style>
  7.         body{
  8.             font-family: Calibri, Arial;
  9.         }
  10.         .button{
  11.             background: #fff;
  12.             border-radius: 5px;
  13.             padding: 10px;
  14.             margin: 10px;
  15.             height: 50px;
  16.             display: block;
  17.             text-decoration: none;
  18.             line-height: 50px;
  19.             font-size: larger;
  20.             color: #4f4f4f;
  21.             font-weight: 700;
  22.             transition: 1s background;
  23.         }
  24.         .button:hover{
  25.             background: #dedede;
  26.             transition: 1s background;
  27.         }
  28.     </style>
  29. </head>
  30. <body style="background: #f1f5f9">
  31. <div style="text-align: center;margin-top: 20px;">
  32.     Logowanie CRM
  33. </div>
  34. <div style="max-width:28rem; margin-left:auto;margin-right:auto;box-shadow:0 10px 15 px -3px rgba(15,23,43,.1),0 4px 6px -4px rgba(15,23,42,1)">
  35.     <div style="width: 50%; float:left; text-align:center;">
  36.         <div style="width: 100%">
  37.             <a class="button" href="/consultant/login">
  38.                 Obsługa klienta
  39.             </a>
  40.         </div>
  41.     </div>
  42.     <div style="width: 50%; float:left; text-align:center;">
  43.         <div style="width: 100%">
  44.                 <a class="button" href="/admin/login">
  45.                 Biuro
  46.             </a>
  47.         </div>
  48.     </div>
  49. </div>
  50. </body>
  51. </html>