Skip to content

Latest commit

 

History

History
95 lines (46 loc) · 1.08 KB

User-Registation.md

File metadata and controls

95 lines (46 loc) · 1.08 KB

User Registration

Description

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,

}