more
This commit is contained in:
@@ -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 = () => {
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
{showAddAccount ? (
|
||||
<div className="show-addaccount-container">
|
||||
{" "}
|
||||
<div className="plan-header-right">
|
||||
<h5 className="signup-subheader-text">
|
||||
Add additional accounts
|
||||
</h5>
|
||||
<p className="signup-accounts-info">
|
||||
Account holder access will be setup later
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
) : (
|
||||
<></>
|
||||
)}
|
||||
<div className="signup-button-box">
|
||||
<Button
|
||||
className="primary-button signup-proceed"
|
||||
type="button"
|
||||
size="lg"
|
||||
onClick={() => setShowAddAccount(!showAddAccount)}
|
||||
disabled={isBusy}
|
||||
labelText="Add Account(s)"
|
||||
/>
|
||||
<Button
|
||||
className="primary-button signup-proceed"
|
||||
type="button"
|
||||
|
||||
Reference in New Issue
Block a user