Commit 9cff0c23 authored by Lorenzo Trujillo Rojas's avatar Lorenzo Trujillo Rojas
Browse files

Se agregaron las rutas para el reseteo de la contraseña

parent 60e1ea08
Loading
Loading
Loading
Loading
+21 −0
Original line number Diff line number Diff line
@@ -102,6 +102,27 @@ const MainLayout = () => {
          statusBarColor: LIGHT_THEME.color.primary,
        }}
      />
      <Stack.Screen
        name="auth/reset_password"
        options={{
          title: "Reset Password",
          statusBarColor: LIGHT_THEME.color.primary,
          headerStyle: {
            backgroundColor: LIGHT_THEME.color.primary,
          },
          headerTitleStyle: {
            color: LIGHT_THEME.color.white,
          },
          headerTitleAlign: "center",
          headerTintColor: LIGHT_THEME.color.white,
        }}
      />
      <Stack.Screen
        name="auth/reset_password_error"
        options={{
          headerShown: false,
        }}
      />
    </Stack>
  );
};
+7 −0
Original line number Diff line number Diff line
import { ResetPasswordPage } from "../../src/auth/pages/reset_password_page";

export default function ResetPassword() {
    return (
        <ResetPasswordPage />
    );
}
 No newline at end of file
+5 −0
Original line number Diff line number Diff line
export default function ResetPasswordError() {
    return (
        <ResetPasswordError />
    );
};
 No newline at end of file