more
This commit is contained in:
@@ -188,6 +188,10 @@ const SignupPage = () => {
|
|||||||
setShowAddAccount(!showAddAccount);
|
setShowAddAccount(!showAddAccount);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const handleCancelAdd = () => {
|
||||||
|
setShowAddAccount(!showAddAccount);
|
||||||
|
};
|
||||||
|
|
||||||
async function handleStripeAuthorization(
|
async function handleStripeAuthorization(
|
||||||
user,
|
user,
|
||||||
paymentDataValues,
|
paymentDataValues,
|
||||||
@@ -439,6 +443,20 @@ const SignupPage = () => {
|
|||||||
account username(s) and access will be setup later
|
account username(s) and access will be setup later
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
<div className="details-button-box">
|
||||||
|
<Button
|
||||||
|
className="secondary-button back-button"
|
||||||
|
onClick={handleCancelAdd}
|
||||||
|
labelText="Cancel"
|
||||||
|
/>
|
||||||
|
<div className="upload-button-box">
|
||||||
|
<Button
|
||||||
|
className="p-2 mr-2 primary-button"
|
||||||
|
onClick={() => setShowUploadModal(true)}
|
||||||
|
labelText="Upload Document"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
<></>
|
<></>
|
||||||
@@ -456,7 +474,6 @@ const SignupPage = () => {
|
|||||||
) : (
|
) : (
|
||||||
<></>
|
<></>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
className="primary-button signup-proceed"
|
className="primary-button signup-proceed"
|
||||||
type="button"
|
type="button"
|
||||||
|
|||||||
Reference in New Issue
Block a user