import wixUsers from 'wix-users'; import wixData from 'wix-data'; $w.onReady(function () { $w("#vendorRegisterButton").onClick(async () => { const email = $w("#emailInput").value; const storeName = $w("#storeNameInput").value; const password = $w("#passwordInput").value; // Register vendor try { const user = await wixUsers.register(email, password); // Add vendor to Vendors Collection await wixData.insert("Vendors", { "email": email, "storeName": storeName, "vendorId": user.id }); // Redirect vendor to their dashboard wixUsers.currentUser.getEmail().then((userEmail) => { wixLocation.to("/vendor-dashboard"); }); } catch (error) { console.log("Error registering vendor:", error); } }); });
top of page

01 23 45 67 89

39 Rue de Bretagne, 75003 Paris, France

  • Facebook
  • Instagram
  • Link
  • Link

Abonnez-vous à Notre Newsletter

Contactez-nous

bottom of page