more
This commit is contained in:
@@ -39,7 +39,6 @@ const SignupPage = () => {
|
|||||||
const [showPaymentModal, setShowPaymentModal] = useState(false);
|
const [showPaymentModal, setShowPaymentModal] = useState(false);
|
||||||
const [showSelectPlan, setShowSelectPlan] = useState(true);
|
const [showSelectPlan, setShowSelectPlan] = useState(true);
|
||||||
const [activeRadioOption, setActiveRadioOption] = useState("monthlyBasic");
|
const [activeRadioOption, setActiveRadioOption] = useState("monthlyBasic");
|
||||||
const modalText = "Description of monthly and annual subscriptions";
|
|
||||||
const [selectedPlan, setSelectedPlan] = useState({});
|
const [selectedPlan, setSelectedPlan] = useState({});
|
||||||
const [isAnnualBilling, setIsAnnualBilling] = useState(false);
|
const [isAnnualBilling, setIsAnnualBilling] = useState(false);
|
||||||
// Could also go in App.js if needed in the future
|
// Could also go in App.js if needed in the future
|
||||||
@@ -50,9 +49,7 @@ const SignupPage = () => {
|
|||||||
? process.env.REACT_APP_API_DEV
|
? process.env.REACT_APP_API_DEV
|
||||||
: process.env.REACT_APP_API_PROD;
|
: process.env.REACT_APP_API_PROD;
|
||||||
|
|
||||||
const basicPrice = 59;
|
const modalText = "Description of monthly and annual subscriptions";
|
||||||
const proPrice = 139;
|
|
||||||
const unlimtedPrice = 169;
|
|
||||||
|
|
||||||
const handleChangeInput = (e, name) => {
|
const handleChangeInput = (e, name) => {
|
||||||
const newData = handleFormDataChange(e, name, data, signupFields);
|
const newData = handleFormDataChange(e, name, data, signupFields);
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ export const signupRadioFields = [
|
|||||||
"1 document per month",
|
"1 document per month",
|
||||||
"Carryover 1 document to next period",
|
"Carryover 1 document to next period",
|
||||||
"24/7 support",
|
"24/7 support",
|
||||||
|
"First month is free!",
|
||||||
],
|
],
|
||||||
details: "",
|
details: "",
|
||||||
pricing: [
|
pricing: [
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ const Radio = (props) => {
|
|||||||
</div>
|
</div>
|
||||||
<div className="radio-circle-lower">
|
<div className="radio-circle-lower">
|
||||||
<div className="radio-description-box">
|
<div className="radio-description-box">
|
||||||
{description.map((item) => {
|
{description.map((item, i) => {
|
||||||
return <p className="signup-feat-item">{item}</p>;
|
return <p className="signup-feat-item">{item}</p>;
|
||||||
})}
|
})}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user