Veuillez allez sur la page d’abonnement Choisissez un niveau d’abonnement.

// Workaround for lp-coupon-form bug
// URL in form action doesn’t work correctly
// This snippet will replace the URL
window.onload = () => {
setTimeout(() => {
const formElement = document.querySelector(« form[name=lp-coupon-form] »);
// Read Window.location
let currentLocation = location.toString();
if (formElement) {
formElement.setAttribute(« action », currentLocation);
}
}, 500);
};