more
This commit is contained in:
@@ -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 = () => {
|
||||
<></>
|
||||
)}
|
||||
<div className="signup-button-box">
|
||||
<Button
|
||||
className="primary-button signup-proceed"
|
||||
type="button"
|
||||
size="lg"
|
||||
onClick={() => setShowAddAccount(!showAddAccount)}
|
||||
disabled={isBusy}
|
||||
labelText="Add Account(s)"
|
||||
/>
|
||||
{!showAddAccount ? (
|
||||
<Button
|
||||
className="secondary-button"
|
||||
type="button"
|
||||
size="lg"
|
||||
onClick={handleAddAccounts}
|
||||
disabled={isBusy}
|
||||
labelText="Add Account(s)"
|
||||
/>
|
||||
) : (
|
||||
<></>
|
||||
)}
|
||||
|
||||
<Button
|
||||
className="primary-button signup-proceed"
|
||||
type="button"
|
||||
|
||||
@@ -56,8 +56,8 @@
|
||||
width: 100%;
|
||||
margin-bottom: 24px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-end;
|
||||
flex-direction: row;
|
||||
justify-content: flex-end;
|
||||
padding-right: 14px;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user