initial setup for stripe

This commit is contained in:
Jacob
2024-01-22 17:25:09 -05:00
parent 8213091342
commit d9e49487a3
11 changed files with 155 additions and 31 deletions

View File

@@ -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",
},
};

View File

@@ -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 },