more
This commit is contained in:
@@ -188,6 +188,10 @@ const SignupPage = () => {
|
||||
setShowAddAccount(!showAddAccount);
|
||||
};
|
||||
|
||||
const handleCancelAdd = () => {
|
||||
setShowAddAccount(!showAddAccount);
|
||||
};
|
||||
|
||||
async function handleStripeAuthorization(
|
||||
user,
|
||||
paymentDataValues,
|
||||
@@ -439,6 +443,20 @@ const SignupPage = () => {
|
||||
account username(s) and access will be setup later
|
||||
</p>
|
||||
</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>
|
||||
) : (
|
||||
<></>
|
||||
@@ -456,7 +474,6 @@ const SignupPage = () => {
|
||||
) : (
|
||||
<></>
|
||||
)}
|
||||
|
||||
<Button
|
||||
className="primary-button signup-proceed"
|
||||
type="button"
|
||||
|
||||
Reference in New Issue
Block a user