top of page
Search

CUSTOM SIGNUP FORM - VELO BY WIX

  • Writer: eggwebtut
    eggwebtut
  • Feb 18, 2021
  • 1 min read

Updated: Mar 10, 2021


import wixUsers from 'wix-users';

import wixLocation from 'wix-location';

$w.onReady(function(){

$w('#signupButton').onClick(function (){

let email = $w('#email').value;

let password = $w('#password').value;

wixUsers.register(email,password)

.then(()=>{

wixLocation.to('/example-page');

})

})

})



 
 
 

Recent Posts

See All

Comments


bottom of page