Skip to content

Commit

Permalink
Change login page path
Browse files Browse the repository at this point in the history
  • Loading branch information
dabigjoe6 committed Aug 27, 2023
1 parent a68802f commit af47986
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import * as React from "react";
import * as Yup from "yup";
import { useFormik } from "formik";
import { Input, Button, Spacing } from "../../../../components";
import { Input, Button, Spacing } from "../../../components";
import {
Container,
Form,
H4,
GoogleSignIn,
EmailSignIn,
} from "..";
import { AuthContext, LoginDetails } from "../../../../contexts/Auth";
} from "../components";
import { AuthContext, LoginDetails } from "../../../contexts/Auth";
import { useNavigate } from "react-router-dom";
import { useGoogleLogin } from '@react-oauth/google';
import styled from "styled-components";
import { Colors } from "../../../../config";
import { Colors } from "../../../config";

const CreateNewAccountBtn = styled(Button) <{ transparent: boolean }>`
margin-top: 10px;
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { Layout } from "../components";

import Home from "./home";

import Login from "./auth/components/login";
import Login from "./auth/login";
import SignUp from "./auth/sign-up";
import ForgotPassword from "./auth/forgot-password";
import ChangePassword from "./auth/change-password";
Expand Down

0 comments on commit af47986

Please sign in to comment.