This Widget provides an easy-to-use fullscreen UI for a signup.
/**
* Attach the Widget to a DOMNode
*/
SignupWidget.create('app')
.then(() => {
console.log('Widget created');
})
.catch((err) => {
console.error('An error occured: ', err);
});
The embedding page needs to provide the following libraries:
Ensure you have installed (globally) the following software on your system:
Inside your local working directory:
$ yarn install
To start the development server:
$ yarn dev
$ yarn lint
$ yarn test