CREATE NEW PASSWORD - VELO BY WIX
- eggwebtut
- Feb 18, 2021
- 1 min read
Updated: Mar 10, 2021
import wixUsers from 'wix-users';
import wixLocation from 'wix-location';
import wixWindow from 'wix-window';
import wixData from 'wix-data';
let registration;
$w.onReady(function () {
wixUsers.promptForgotPassword()
.then(() => {
//
})
.catch((err) => {
let errorMsg = err;
});
});
Comments