First Step When Customer Click On Sign Up or Register You Have To Initialize Session First By Creating Session Token Using The Following API :
2. Import eNROLL JS File in index.html :
<script src="eNROLL.min.js"></script>
3. Add Div Element With Specifying Id For This Div
<div id="myDiv">
</div>
4. Initialize eNroll Component Any Where In Your JS File After Document Is Loaded:
eNROLL.init({
elementId:"myDiv", // The Id We Set Before For Our Div
url:"{{environment.url}}", // this parameter is sent to you by email after acceptiong your org
sessionId://Token We Got In Step 1 From The API,
disableTutorials:true, //(optional)this value is to hide and skip tutorials, default value is false.
onExit:(error)=>{ // error type is {message:"string",errorCode:"string"} | null
// define What Happen When User Exit From eNROLL Plugin
},
onSuccess:(data)=>{
// data contain {applicantId:"string"} | null
// after onBoarding success also call onExist
}
});