From: soufiane Date: Mon, 22 Apr 2024 16:21:29 +0000 (+0200) Subject: wip #6867 @0:20 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=d5c8193684bd7df5c07e08f0a5b04e9f80595765;p=fluidbook-html5.git wip #6867 @0:20 --- diff --git a/js/libs/fluidbook/cart/fluidbook.cart.bastide-resah-guest.js b/js/libs/fluidbook/cart/fluidbook.cart.bastide-resah-guest.js index 006c8e26..ea485e93 100644 --- a/js/libs/fluidbook/cart/fluidbook.cart.bastide-resah-guest.js +++ b/js/libs/fluidbook/cart/fluidbook.cart.bastide-resah-guest.js @@ -24,6 +24,12 @@ FluidbookCartBastideResahGuest.prototype = { let formData = $(this).serialize() $this.register(formData) }); + + $(document).on("submit", '#Bastide_login_form', function (e) { + e.preventDefault() + let formData = $(this).serialize() + $this.login(formData) + }); }, addToCart: function (reference) { @@ -152,11 +158,11 @@ FluidbookCartBastideResahGuest.prototype = {

Pour afficher les tarifs, ajouter des produits à votre sélection, et nous envoyer une demande de devis, veuillez vous identifier :

- +
- +
Mot de passe oublié ? @@ -198,12 +204,24 @@ FluidbookCartBastideResahGuest.prototype = { }); }, - login: function() { - + login: function(d) { + var $this = this + $.ajax({ + url: '/fluidbook/login', + type: 'POST', + data: d, + success: function(data) { + window.reload() + }, + error: function(xhr, status, error) { + let errorsMessage = JSON.parse(xhr.responseText); + $(".errors-container").remove() + $("#Bastide_login_form").prepend('

Une erreur est survenue. Verifiez vos identifiants.

') + } + }); }, displayErrors: function(errors) { - console.log(errors['errors'],"ok") $(".errors-container").remove() $(".error").removeClass("error") for(let k in errors['errors']) { @@ -215,10 +233,6 @@ FluidbookCartBastideResahGuest.prototype = { } }, - login: function () { - - }, - getMenuWidth: function () { return window.location.hash === '#/cart/validate' ? 990 : 1190; // Validate modal is narrower than main cart },