Nota: Solo puedes solicitar una nueva contraseña cada 2 hora.
Si no recibes un correo electrónico, revisa tu carpeta de spam o inténtalo nuevamente.
"; $('#passwordLostModal .modal-body').html(html); setTimeout(function(){ $('#passwordLostModal').modal('hide'); }, 3000); $('#toast-success .toast-header .small').html("Hace unos segundos");$('#toast-success .toast-header .me-auto').html("Restablecer contraseña");$('#toast-success .toast-body .fw-semibold').html(html);$('#toast-success').toast('show'); } }); });$('.user-ajax-form').on('submit', function(e) { /*use on if jQuery 1.7+*/ e.preventDefault(); /* avoid to execute the actual submit of the form.*/ var form = $(this); var actionUrl = form.attr('action'); form.find('.alert-danger').addClass("d-none"); form.find('.alert-success').addClass("d-none"); $.ajax({ type: "POST", url: actionUrl, data: form.serialize(), /* serializes the form's elements.*/ success: function(data) { if (data.error == true) { form.find('.alert-danger').removeClass("d-none"); form.find('.alert-danger').html(data.errors); $('#loginModal .error-message').show(); $('#loginModal .error-message p').html(data.errors); } else { form.trigger("reset"); form.find('.form-element').addClass("d-none"); if (typeof data.html !== 'undefined' && data.html !== null) { form.find('.alert-success').removeClass("d-none"); form.find('.alert-success').html(data.html); } if (typeof data.target_path !== 'undefined' && data.target_path !== null) { window.location.href = data.target_path; } } if (data.reload == true) {/*location.reload();*/} } }); });$('.shoping-cart-table .item-trash').click(function() {updateCart($(this).data( "product-type" ), $(this).data( "item-id" ), $(this).data( "product-id" ), -1, $(this).data( "url" ));console.log($(this));});$('.shoping-cart-table input[name=quantity]').change(function() { updateCart($(this).data( "product-type" ), $(this).data( "item-id" ), $(this).data( "product-id" ), $(this).val(), $(this).data( "url" ));/*updateCartTotalItem($(this).data( "product-id" ), $(this).val(), $(this).data( "url" ));*//*console.log($(this).closest('table').find('.total-price-item').html());*/});});