initial setup for stripe
This commit is contained in:
@@ -23,4 +23,16 @@ export const paymentfields = {
|
||||
maxLength: 5,
|
||||
type: "cardCvvCode",
|
||||
},
|
||||
cardExpirationMonth: {
|
||||
required: true,
|
||||
label: "Card Expiration Month",
|
||||
maxLength: 2,
|
||||
type: "cardExpirationMonth",
|
||||
},
|
||||
cardExpirationYear: {
|
||||
required: true,
|
||||
label: "Card Expiration Year",
|
||||
maxLength: 4,
|
||||
type: "cardExpirationYear",
|
||||
},
|
||||
};
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
export const signupfields = {
|
||||
export const signupFields = {
|
||||
firstName: { required: true, label: "First Name", maxLength: 45 },
|
||||
lastName: { required: true, label: "Last Name", maxLength: 45 },
|
||||
firm: { required: true, label: "Firm", minLength: 2, maxLength: 45 },
|
||||
Reference in New Issue
Block a user