Feature 11034: Forgot Password in OSM

	- Added support for forgot password from UI
	- Added forgot password button in login page

Change-Id: I058a09356c4e2ff5d5b0e883e74f0041d1aaffea
Signed-off-by: SANDHYA.JS <sandhya.j@tataelxsi.co.in>
diff --git a/src/models/UserModel.ts b/src/models/UserModel.ts
index e49670a..babf2c3 100644
--- a/src/models/UserModel.ts
+++ b/src/models/UserModel.ts
@@ -39,6 +39,7 @@
     project_role_mappings?: ProjectRoleMappings[];
     account_expire_time: string;
     password_expire_time?: string;
+    email_id?: string;
 }
 
 /** Interface for user role mappings */
@@ -65,6 +66,7 @@
     identifier: string;
     user_status: string;
     account_expire_time?: string;
+    email_id?: string;
 }
 
 /** Interface for Project Roles Mappings */