<!DOCTYPE html>
<html lang="en">
<head>
<base href="">
<title> Azucar importada IANSA {{ titlePage|default('Bienvenido') }} </title>
<meta charset="utf-8"/>
<meta name="description" content="Administre de forma eficaz las fechas de vencimiento de auditorías mediantes alertas anticipadas."/>
<meta name="keywords" content="palabras claves "/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta property="og:locale" content="en_US"/>
<meta property="og:type" content="article"/>
<meta property="og:title" content="Iansa, Auditoría"/>
<meta property="og:url" content="https://keenthemes.com/metronic"/>
<meta property="og:site_name" content="Audítoria | IAnalytics"/>
<link rel="canonical" href="https://preview.keenthemes.com/metronic8"/>
<link rel="shortcut icon" href="{{ asset('media/logoicon.png') }}"/>
<!--begin::Fonts-->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700"/>
<!--end::Fonts-->
<!--begin::Page Vendor Stylesheets(used by this page)-->
<!--end::Page Vendor Stylesheets-->
<!--begin::Global Stylesheets Bundle(used by all pages)-->
<link href="{{ asset('plugins/global/plugins.bundle.css') }}" rel="stylesheet" type="text/css" />
<link href="{{ asset('css/style.bundle.css') }}" rel="stylesheet" type="text/css" />
<link href="{{ asset('css/audit.css') }}" rel="stylesheet" type="text/css" />
{% set headerImg = 'media/headerOrangeLogin-bg.jpg' %}
{% block stylesheets %}
{% endblock %}
</head>
<body id="kt_body" class="bg-body">
<div class="d-flex flex-column flex-root">
<div class="d-flex flex-column flex-lg-row flex-column-fluid">
<div class="d-flex flex-column flex-lg-row-auto w-xl-600px position-xl-relative"
style="background-image: url({{ asset(headerImg) }})">
<div class="d-flex flex-column position-xl-fixed top-0 bottom-0 w-xl-600px scroll-y">
<div class="d-flex flex-row-fluid flex-column text-center p-10 pt-lg-20">
</div>
</div>
</div>
<div class="d-flex flex-column flex-lg-row-fluid py-10">
<div class="d-flex flex-center flex-column flex-column-fluid">
<div class="w-lg-500px p-10 p-lg-15 mx-auto">
<div class="text-center mb-4">
<img alt="Logo" src="{{ asset('media/logo.jpg') }}"
style="width: 250px;" />
<h1 class="text-dark mb-3 mt-3">Inicio de Sesión</h1>
{% if error %}
<div class="alert alert-danger d-flex align-items-center p-5 mb-10">
<span class="me-2" style="zoom: 3"><i class="text-danger fas fa-exclamation-triangle"></i></span>
<div class="d-flex flex-column" style="text-align: start;">
<h4 class="mb-1 text-danger">Ha ocurrido un error </h4>
<span>{{ error.messageKey }}</span>
</div>
</div>
{% endif %}
<hr>
</div>
<div id="logins" style="display: block">
<form class="form w-100" novalidate="novalidate" id="kt_sign_in_form"
action="{{ path('app_login') }}" method="post">
<div class="fv-row mb-10">
<label class="form-label fs-6 fw-bolder text-dark">Correo Electrónico</label>
<input class="form-control form-control-lg form-control-solid" type="email"
value="{{ last_username }}" name="email" id="email" required autocomplete="off"/>
<input type="hidden" name="_csrf_token"
value="{{ csrf_token('authenticate') }}"/>
</div>
<div class="fv-row mb-10">
<div class="d-flex flex-stack mb-2">
<label class="form-label fw-bolder text-dark fs-6 mb-0">Contraseña</label>
</div>
<input class="form-control form-control-lg form-control-solid" type="password"
name="password" id="inputPassword" autocomplete="off"/>
</div>
<div class="text-center">
<button type="submit" class="btn btn-lg btn-primary w-100 mb-5">
<span class="indicator-label">Ingresar</span>
</button>
</div>
</form>
</div>
</div>
</div>
<div class="d-flex flex-center flex-wrap fs-6 p-5 pb-0">
<div class="d-flex flex-center fw-bold fs-6">
<a href="https://ianalytics.cl" class="text-muted text-hover-primary px-2" target="_blank">iAnalytics.cl</a>
</div>
</div>
</div>
</div>
</div>
<script src="{{ asset('plugins/global/plugins.bundle.js') }} "></script>
<script src="{{ asset('js/scripts.bundle.js') }} "></script>
<script>
{% for flashMessage in app.session.flashbag.get('error') %}
Swal.fire({
text: "{{ flashMessage }}",
icon: "error",
timer: 2000,
showConfirmButton: false,
showCancelButton: false,
});
{% endfor %}
{% for flashMessage in app.session.flashbag.get('success') %}
Swal.fire({
text: "{{ flashMessage }}",
icon: "success",
timer: 2000,
showConfirmButton: false,
showCancelButton: false,
});
{% endfor %}
{% for flashMessage in app.session.flashbag.get('info') %}
Swal.fire({
text: "{{ flashMessage }}",
icon: "info",
timer: 2000,
showConfirmButton: false,
showCancelButton: false,
});
{% endfor %}
</script>
</body>
</html>