|
|
@ -9,6 +9,8 @@ import UpdatePassword from "../screens/UpdatePassword"; |
|
|
|
import EditUserData from "../screens/EditUserData"; |
|
|
|
import ActivateInstitutionCode from "../screens/ActivateInstitutionCode"; |
|
|
|
import ActivateInstitutionShowCode from "../screens/ActivateInstitutionShowCode"; |
|
|
|
import PasswordRecovery from "../screens/PasswordRecoveryScreen"; |
|
|
|
import PasswordRecoveryChangePswd from "../screens/PasswordRecoveryChangePswdScreen"; |
|
|
|
|
|
|
|
const Stack = createStackNavigator(); |
|
|
|
|
|
|
@ -78,15 +80,20 @@ const AccountNavigator = () => ( |
|
|
|
}} |
|
|
|
/> |
|
|
|
<Stack.Screen |
|
|
|
name="UpdatePassword" |
|
|
|
component={UpdatePassword} |
|
|
|
options={{ |
|
|
|
title: "", |
|
|
|
headerStyle: { |
|
|
|
backgroundColor: "white", |
|
|
|
}, |
|
|
|
}} |
|
|
|
name="PasswordRecovery" |
|
|
|
component={PasswordRecovery} |
|
|
|
initialParams={{ user : {} }} |
|
|
|
options={{ headerTitle: "" }} |
|
|
|
/> |
|
|
|
|
|
|
|
<Stack.Screen |
|
|
|
name="PasswordRecoveryChangePswd" |
|
|
|
component={PasswordRecoveryChangePswd} |
|
|
|
initialParams={{ authToken : "" }} |
|
|
|
options={{ headerTitle: "" }} |
|
|
|
/> |
|
|
|
|
|
|
|
|
|
|
|
<Stack.Screen |
|
|
|
name="EditUserData" |
|
|
|
component={EditUserData} |
|
|
|