more
This commit is contained in:
@@ -154,11 +154,27 @@ const SignupPage = () => {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
const dataValues = validateData();
|
const dataValues = validateData();
|
||||||
if (dataValues === null) {
|
if (dataValues === null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
console.log("dataValues", dataValues);
|
*/
|
||||||
|
const dataValues = {
|
||||||
|
barNumber: "232323",
|
||||||
|
city: "broolyn",
|
||||||
|
confirmPassword: "123344556",
|
||||||
|
email: "j@s.com",
|
||||||
|
firm: "asdf",
|
||||||
|
firstName: "ghghg",
|
||||||
|
lastName: "hhhhh",
|
||||||
|
password: "123344556",
|
||||||
|
practiceArea: "dfdfdf",
|
||||||
|
state: "New York",
|
||||||
|
streetAddress: "123 Main",
|
||||||
|
telephone: "(313) 555-5555",
|
||||||
|
zipCode: "12345",
|
||||||
|
};
|
||||||
setShowSelectPlan(!showSelectPlan);
|
setShowSelectPlan(!showSelectPlan);
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -211,8 +227,6 @@ const SignupPage = () => {
|
|||||||
subscriptionId = response.subscriptionId;
|
subscriptionId = response.subscriptionId;
|
||||||
customerId = response.customerId;
|
customerId = response.customerId;
|
||||||
|
|
||||||
console.log("response", response);
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
subscriptionId,
|
subscriptionId,
|
||||||
customerId,
|
customerId,
|
||||||
@@ -408,6 +422,16 @@ const SignupPage = () => {
|
|||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div className="signup-button-box">
|
||||||
|
<Button
|
||||||
|
className="primary-button signup-proceed"
|
||||||
|
type="button"
|
||||||
|
size="lg"
|
||||||
|
onClick={handleProceedToPayment}
|
||||||
|
disabled={isBusy}
|
||||||
|
labelText="Proceed to Payment"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
<></>
|
<></>
|
||||||
|
|||||||
Reference in New Issue
Block a user