This commit is contained in:
Kenneth Jannette
2024-01-14 17:02:37 -06:00
parent ff74e641f7
commit 71baab3c06
2 changed files with 43 additions and 17 deletions

View File

@@ -1,4 +1,4 @@
export const demofields = {
export const demoFields = {
firstName: { required: true, label: "First Name", maxLength: 45 },
lastName: { required: true, label: "Last Name", maxLength: 45 },
telephone: {
@@ -16,3 +16,21 @@ export const demofields = {
maxLength: 45,
},
};
export const supportFields = {
firstName: { required: true, label: "First Name", maxLength: 45 },
lastName: { required: true, label: "Last Name", maxLength: 45 },
telephone: {
required: true,
label: "Telephone: (###) ###-####",
maxLength: 45,
type: "phone",
},
email: { required: true, label: "Email", maxLength: 45, type: "email" },
supportIssue: {
required: true,
label: "Support Issue",
minLength: 3,
maxLength: 45,
},
};