more
This commit is contained in:
@@ -511,7 +511,6 @@ const SignupPage = () => {
|
|||||||
{!isUpgrade && !isBusy ? signupForm : <></>}
|
{!isUpgrade && !isBusy ? signupForm : <></>}
|
||||||
{showSelectPlan && !isBusy ? (
|
{showSelectPlan && !isBusy ? (
|
||||||
<div className="select-plan-container">
|
<div className="select-plan-container">
|
||||||
<div className="select-sub-left">
|
|
||||||
<div className="select-plan-header">
|
<div className="select-plan-header">
|
||||||
<div className="plan-header-right">
|
<div className="plan-header-right">
|
||||||
<h5 className="signup-subheader-text">
|
<h5 className="signup-subheader-text">
|
||||||
@@ -526,6 +525,7 @@ const SignupPage = () => {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div className="select-sub-left">
|
||||||
<div className="radio-group-box">
|
<div className="radio-group-box">
|
||||||
{signupRadioFields?.map((option, index) => (
|
{signupRadioFields?.map((option, index) => (
|
||||||
<div className="signup-radio-container">
|
<div className="signup-radio-container">
|
||||||
@@ -604,36 +604,6 @@ const SignupPage = () => {
|
|||||||
) : (
|
) : (
|
||||||
<></>
|
<></>
|
||||||
)}
|
)}
|
||||||
<div className="signup-button-box">
|
|
||||||
{!showAddAccount && !isBusy ? (
|
|
||||||
<>
|
|
||||||
{showAddAccountBtn ? (
|
|
||||||
<Button
|
|
||||||
className="secondary-button cancel-add-account-btn"
|
|
||||||
type="button"
|
|
||||||
size="lg"
|
|
||||||
onClick={handleAddAccounts}
|
|
||||||
disabled={isBusy}
|
|
||||||
labelText="Add Account(s)"
|
|
||||||
style={{ marginTight: "12px;" }}
|
|
||||||
/>
|
|
||||||
) : (
|
|
||||||
<></>
|
|
||||||
)}
|
|
||||||
|
|
||||||
<Button
|
|
||||||
className="primary-button signup-proceed"
|
|
||||||
type="button"
|
|
||||||
size="lg"
|
|
||||||
onClick={handleProceedToPayment}
|
|
||||||
disabled={isBusy}
|
|
||||||
labelText="Proceed to Payment"
|
|
||||||
/>
|
|
||||||
</>
|
|
||||||
) : (
|
|
||||||
<></>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
|
|||||||
@@ -81,14 +81,6 @@
|
|||||||
width: 160px;
|
width: 160px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.select-plan-container {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
margin-top: 24px;
|
|
||||||
width: 920px;
|
|
||||||
min-height: 810px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.select-plan-header {
|
.select-plan-header {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
@@ -119,15 +111,23 @@
|
|||||||
width: 50%;
|
width: 50%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.select-plan-container {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
margin-top: 24px;
|
||||||
|
width: 920px;
|
||||||
|
min-height: 810px;
|
||||||
|
border-radius: 10px;
|
||||||
|
background-color: rgb(240, 247, 250);
|
||||||
|
border: 1px solid #e9e9e9;
|
||||||
|
}
|
||||||
|
|
||||||
.select-sub-left {
|
.select-sub-left {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
margin-top: 45px;
|
margin-top: 45px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-radius: 10px;
|
|
||||||
background-color: rgb(240, 247, 250);
|
|
||||||
border: 1px solid #e9e9e9;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.select-sub-right {
|
.select-sub-right {
|
||||||
|
|||||||
Reference in New Issue
Block a user