From 84fdfc1e0a37ed480e908f72994d06c9baeed9c4 Mon Sep 17 00:00:00 2001 From: VividTruthKeeper Date: Mon, 7 Feb 2022 17:03:54 +0500 Subject: [PATCH] unfinished sign up --- src/App.js | 2 + src/components/sign/RegForm.js | 50 +++++++++++++++++++++ src/components/{signIn => sign}/SignForm.js | 0 src/pages/SignIn.js | 2 +- src/pages/SignUp.js | 19 ++++++++ src/styles/_sign-up.scss | 3 ++ src/styles/style.scss | 1 + 7 files changed, 76 insertions(+), 1 deletion(-) create mode 100644 src/components/sign/RegForm.js rename src/components/{signIn => sign}/SignForm.js (100%) create mode 100644 src/pages/SignUp.js create mode 100644 src/styles/_sign-up.scss diff --git a/src/App.js b/src/App.js index 97c7bbb..491725b 100644 --- a/src/App.js +++ b/src/App.js @@ -12,6 +12,7 @@ import Footer from "./components/global/Footer"; // IMPORT PAGES import Main from "./pages/Main"; import SignIn from "./pages/SignIn"; +import SignUp from "./pages/SignUp"; const App = () => { return ( @@ -20,6 +21,7 @@ const App = () => { } /> } /> + } />