templates/security/index.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <base href="">
  5.     <title> Azucar importada IANSA {{ titlePage|default('Bienvenido') }}  </title>
  6.     <meta charset="utf-8"/>
  7.     <meta name="description" content="Administre de forma eficaz las fechas de vencimiento de auditorías mediantes alertas anticipadas."/>
  8.     <meta name="keywords" content="palabras claves "/>
  9.     <meta name="viewport" content="width=device-width, initial-scale=1"/>
  10.     <meta property="og:locale" content="en_US"/>
  11.     <meta property="og:type" content="article"/>
  12.     <meta property="og:title" content="Iansa, Auditoría"/>
  13.     <meta property="og:url" content="https://keenthemes.com/metronic"/>
  14.     <meta property="og:site_name" content="Audítoria | IAnalytics"/>
  15.     <link rel="canonical" href="https://preview.keenthemes.com/metronic8"/>
  16.     <link rel="shortcut icon" href="{{ asset('media/logoicon.png') }}"/>
  17.     <!--begin::Fonts-->
  18.     <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700"/>
  19.     <!--end::Fonts-->
  20.     <!--begin::Page Vendor Stylesheets(used by this page)-->
  21.     <!--end::Page Vendor Stylesheets-->
  22.     <!--begin::Global Stylesheets Bundle(used by all pages)-->
  23.     <link href="{{ asset('plugins/global/plugins.bundle.css') }}" rel="stylesheet" type="text/css" />
  24.     <link href="{{ asset('css/style.bundle.css') }}" rel="stylesheet" type="text/css" />
  25.     <link href="{{ asset('css/audit.css') }}" rel="stylesheet" type="text/css" />
  26.     {% set headerImg = 'media/headerOrangeLogin-bg.jpg' %}
  27.     {% block stylesheets %}
  28.     {% endblock %}
  29. </head>
  30. <body id="kt_body" class="bg-body">
  31. <div class="d-flex flex-column flex-root">
  32.     <div class="d-flex flex-column flex-lg-row flex-column-fluid">
  33.         <div class="d-flex flex-column flex-lg-row-auto w-xl-600px position-xl-relative"
  34.              style="background-image: url({{ asset(headerImg) }})">
  35.             <div class="d-flex flex-column position-xl-fixed top-0 bottom-0 w-xl-600px scroll-y">
  36.                 <div class="d-flex flex-row-fluid flex-column text-center p-10 pt-lg-20">
  37.                 </div>
  38.             </div>
  39.         </div>
  40.         <div class="d-flex flex-column flex-lg-row-fluid py-10">
  41.             <div class="d-flex flex-center flex-column flex-column-fluid">
  42.                 <div class="w-lg-500px p-10 p-lg-15 mx-auto">
  43.                     <div class="text-center mb-4">
  44.                         <img alt="Logo" src="{{ asset('media/logo.jpg') }}"
  45.                              style="width: 250px;" />
  46.                         <h1 class="text-dark mb-3 mt-3">Inicio de Sesión</h1>
  47.                         {% if error %}
  48.                             <div class="alert alert-danger d-flex align-items-center p-5 mb-10">
  49.                                 <span class="me-2" style="zoom: 3"><i class="text-danger fas fa-exclamation-triangle"></i></span>
  50.                                 <div class="d-flex flex-column" style="text-align: start;">
  51.                                     <h4 class="mb-1 text-danger">Ha ocurrido un error </h4>
  52.                                     <span>{{ error.messageKey }}</span>
  53.                                 </div>
  54.                             </div>
  55.                         {% endif %}
  56.                         <hr>
  57.                     </div>
  58.                     <div id="logins" style="display: block">
  59.                         <form class="form w-100" novalidate="novalidate" id="kt_sign_in_form"
  60.                             action="{{ path('app_login') }}" method="post">
  61.                             <div class="fv-row mb-10">
  62.                                 <label class="form-label fs-6 fw-bolder text-dark">Correo Electrónico</label>
  63.                                 <input class="form-control form-control-lg form-control-solid" type="email"
  64.                                         value="{{ last_username }}" name="email" id="email" required autocomplete="off"/>
  65.                                 <input type="hidden" name="_csrf_token"
  66.                                         value="{{ csrf_token('authenticate') }}"/>
  67.                             </div>
  68.                             <div class="fv-row mb-10">
  69.                                 <div class="d-flex flex-stack mb-2">
  70.                                     <label class="form-label fw-bolder text-dark fs-6 mb-0">Contraseña</label>
  71.                                 </div>
  72.                                 <input class="form-control form-control-lg form-control-solid" type="password"
  73.                                        name="password" id="inputPassword" autocomplete="off"/>
  74.                             </div>
  75.                             <div class="text-center">
  76.                                 <button type="submit" class="btn btn-lg btn-primary w-100 mb-5">
  77.                                     <span class="indicator-label">Ingresar</span>
  78.                                 </button>
  79.                             </div>
  80.                         </form>
  81.                     </div>
  82.                 </div>
  83.             </div>
  84.             <div class="d-flex flex-center flex-wrap fs-6 p-5 pb-0">
  85.                 <div class="d-flex flex-center fw-bold fs-6">
  86.                     <a href="https://ianalytics.cl" class="text-muted text-hover-primary px-2" target="_blank">iAnalytics.cl</a>
  87.                 </div>
  88.             </div>
  89.         </div>
  90.     </div>
  91. </div>
  92. <script src="{{ asset('plugins/global/plugins.bundle.js') }}  "></script>
  93. <script src="{{ asset('js/scripts.bundle.js') }} "></script>
  94. <script>
  95.     {% for flashMessage in app.session.flashbag.get('error') %}
  96.     Swal.fire({
  97.         text: "{{ flashMessage }}",
  98.         icon: "error",
  99.         timer: 2000,
  100.         showConfirmButton: false,
  101.         showCancelButton: false,
  102.     });
  103.     {% endfor %}
  104.     {% for flashMessage in app.session.flashbag.get('success') %}
  105.     Swal.fire({
  106.         text: "{{ flashMessage }}",
  107.         icon: "success",
  108.         timer: 2000,
  109.         showConfirmButton: false,
  110.         showCancelButton: false,
  111.     });
  112.     {% endfor %}
  113.     {% for flashMessage in app.session.flashbag.get('info') %}
  114.     Swal.fire({
  115.         text: "{{ flashMessage }}",
  116.         icon: "info",
  117.         timer: 2000,
  118.         showConfirmButton: false,
  119.         showCancelButton: false,
  120.     });
  121.     {% endfor %}
  122. </script>
  123. </body>
  124. </html>