-
Notifications
You must be signed in to change notification settings - Fork 2
User Registation
On landing page once clicking on login button,It will redirect to user login page.If you are new user,you have to register first. Following fields should be filled.
"Full Name": ,
"userName" : primary,
"email" : primary,
"password":,
"phoneNo" : ,
"age" : ,
"location" : ,
"securityQuestion" :,
"securityAnswer" :
persistence data model
{ "InsuredId" : number,
"Full Name": "string",
"userName" : "string",
"email" : "string",
"phoneNo" : "string",
"age" : "number",
"location" : "string",
"securityQuestion" : "string",
"securityAnswer" : string,
"createdAt" : date/timestamp,
"lastupdatedAt" : date/timestamp }
MBP: { "insuredId" : number,
"Full Name": "string",
"email" : "string",
"phoneNo" : "string",
"location" : "string",
"securityQuestion" : "string",
"securityAnswer" : string,
}
CMB: { "insuredId" : number,
"Full Name": "string",
"email" : "string",
"phoneNo" : "string",
"location" : "string",
"securityQuestion" : "string",
"securityAnswer" : string,
}