From ae8a63db900676e029378c49e5ac489c37504296 Mon Sep 17 00:00:00 2001 From: Kenneth Jannette Date: Sat, 27 Jan 2024 16:44:04 -0600 Subject: [PATCH 01/10] more --- src/Components/SignupPage/SignupPage.js | 25 ++++++++++++++++++++++++- src/styles/signup.scss | 13 ++++++++++++- 2 files changed, 36 insertions(+), 2 deletions(-) diff --git a/src/Components/SignupPage/SignupPage.js b/src/Components/SignupPage/SignupPage.js index f292e01..1b6302d 100644 --- a/src/Components/SignupPage/SignupPage.js +++ b/src/Components/SignupPage/SignupPage.js @@ -49,7 +49,7 @@ const SignupPage = () => { process.env.NODE_ENV === "development" ? process.env.REACT_APP_API_DEV : process.env.REACT_APP_API_PROD; - const [selectedPlanToProcess, setSelectedPlanToProcess] = useState(); + const [showAddAccount, setShowAddAccount] = useState(false); const modalText = "MAYBE PUT TOTAL HERE"; const handleChangeInput = (e, name) => { @@ -425,7 +425,30 @@ const SignupPage = () => { ))} + {showAddAccount ? ( +
+ {" "} +
+
+ Add additional accounts +
+

+ Account holder access will be setup later +

+
+
+ ) : ( + <> + )}
+
From e0cd22242a6a1924255466cbfff0f7095fb980b5 Mon Sep 17 00:00:00 2001 From: Kenneth Jannette Date: Sat, 27 Jan 2024 17:07:21 -0600 Subject: [PATCH 05/10] more --- src/Components/SignupPage/SignupPage.js | 24 ++++++++++++++++-------- src/styles/signup.scss | 4 ++-- 2 files changed, 18 insertions(+), 10 deletions(-) diff --git a/src/Components/SignupPage/SignupPage.js b/src/Components/SignupPage/SignupPage.js index 30d3d7a..692e193 100644 --- a/src/Components/SignupPage/SignupPage.js +++ b/src/Components/SignupPage/SignupPage.js @@ -184,6 +184,9 @@ const SignupPage = () => { setIsAnnual(!isAnnual); console.log("isAnnual", isAnnual); }; + const handleAddAccounts = () => { + setShowAddAccount(!showAddAccount); + }; async function handleStripeAuthorization( user, @@ -441,14 +444,19 @@ const SignupPage = () => { <> )}
-
+ ) : ( <> @@ -456,7 +474,6 @@ const SignupPage = () => { ) : ( <> )} -