more
This commit is contained in:
@@ -17,7 +17,9 @@ import {
|
|||||||
isFormDataHasErrors,
|
isFormDataHasErrors,
|
||||||
} from "../../Utils/Form";
|
} from "../../Utils/Form";
|
||||||
import { objectMap } from "../../Utils/Object";
|
import { objectMap } from "../../Utils/Object";
|
||||||
import { signupfields } from "../../Constants/Fields/Signupfields";
|
import { signupfields } from "../../Constants/Fields/SignupFields";
|
||||||
|
import { paymentfields } from "../../Constants/Fields/PaymentFields";
|
||||||
|
import PaymentModal from "../Modals/PaymentModal";
|
||||||
import "../../styles/signup.scss";
|
import "../../styles/signup.scss";
|
||||||
|
|
||||||
const SignupPage = () => {
|
const SignupPage = () => {
|
||||||
|
|||||||
16
src/Constants/Fields/PaymentFields.js
Normal file
16
src/Constants/Fields/PaymentFields.js
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
export const paymentfields = {
|
||||||
|
cardFirstName: { required: true, label: "Card First Name", maxLength: 45 },
|
||||||
|
cardLastName: { required: true, label: "Card Last Name", maxLength: 45 },
|
||||||
|
cardNumber: {
|
||||||
|
required: true,
|
||||||
|
label: "Card Number",
|
||||||
|
minLength: 16,
|
||||||
|
maxLength: 16,
|
||||||
|
},
|
||||||
|
cardCvvCode: {
|
||||||
|
required: true,
|
||||||
|
label: "Card CVV Number",
|
||||||
|
maxLength: 5,
|
||||||
|
type: "cvv",
|
||||||
|
},
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user