more
This commit is contained in:
@@ -40,7 +40,7 @@ const SignupPage = () => {
|
|||||||
const [showPaymentModal, setShowPaymentModal] = useState(false);
|
const [showPaymentModal, setShowPaymentModal] = useState(false);
|
||||||
const [showSelectPlan, setShowSelectPlan] = useState(false);
|
const [showSelectPlan, setShowSelectPlan] = useState(false);
|
||||||
const [activeRadioOption, setActiveRadioOption] = useState("partner");
|
const [activeRadioOption, setActiveRadioOption] = useState("partner");
|
||||||
const [selectedPlan, setSelectedPlan] = useState({});
|
const [selectedPlan, setSelectedPlan] = useState([{}]);
|
||||||
const [isAnnual, setIsAnnual] = useState(false);
|
const [isAnnual, setIsAnnual] = useState(false);
|
||||||
// Could also go in App.js if needed in the future
|
// Could also go in App.js if needed in the future
|
||||||
const stripe = new Stripe(stripeApiKey);
|
const stripe = new Stripe(stripeApiKey);
|
||||||
@@ -50,7 +50,7 @@ const SignupPage = () => {
|
|||||||
: process.env.REACT_APP_API_PROD;
|
: process.env.REACT_APP_API_PROD;
|
||||||
const [showAddAccount, setShowAddAccount] = useState(false);
|
const [showAddAccount, setShowAddAccount] = useState(false);
|
||||||
const modalText = "MAYBE PUT TOTAL HERE";
|
const modalText = "MAYBE PUT TOTAL HERE";
|
||||||
|
const selectValues = [1, 2, 3, 4, 5, 6, 7, 8];
|
||||||
const handleChangeInput = (e, name) => {
|
const handleChangeInput = (e, name) => {
|
||||||
const newData = handleFormDataChange(e, name, data, signupFields);
|
const newData = handleFormDataChange(e, name, data, signupFields);
|
||||||
if (newData !== null) {
|
if (newData !== null) {
|
||||||
@@ -450,6 +450,31 @@ 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>
|
||||||
|
{" "}
|
||||||
|
<select
|
||||||
|
id="accountNo"
|
||||||
|
className={`form-select`}
|
||||||
|
value={"value"}
|
||||||
|
name={"name"}
|
||||||
|
onChange={"dd"}
|
||||||
|
>
|
||||||
|
<option
|
||||||
|
id="ddlProducts"
|
||||||
|
className={`select-option`}
|
||||||
|
value=""
|
||||||
|
></option>
|
||||||
|
{selectValues.map((item, i) => (
|
||||||
|
<option
|
||||||
|
id="ddlProducts"
|
||||||
|
className={`select-option`}
|
||||||
|
key={`item${i}`}
|
||||||
|
>
|
||||||
|
{item}
|
||||||
|
</option>
|
||||||
|
))}
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
<div className="details-button-box">
|
<div className="details-button-box">
|
||||||
<Button
|
<Button
|
||||||
className="secondary-button back-button"
|
className="secondary-button back-button"
|
||||||
|
|||||||
Reference in New Issue
Block a user