$(document).ready(function () {
$("#formulario").bind("submit",function(){
// Capturamnos el boton de envío
var btnEnviar = $("#btnEnviar");
$.ajax({
type: $(this).attr("method"),
url: $(this).attr("action"),
data:$(this).serialize(),
success: function (data) { $("#formulario").trigger("reset");
if (data.estado=="ok") {
console.log(JSON.stringify(data));
var nombre = data.usuario;
swal("Bienvenido "+nombre+" ", { icon: "success", })
.then((value) => {
location.href = "list_paquetes.php";
}
);
} else
{
var nombre = data.usuario;
swal("Ha ingresado los datos incorrectamente"+" ", { icon: "warning", }); }
},
error: function(data){
/*
* Se ejecuta si la peticón ha sido erronea
* */
swal("Hay problemas para enviar al formulario"+" ", { icon: "warning", });
}
});
// Nos permite cancelar el envio del formulario
return false;
});
});