more
This commit is contained in:
@@ -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,
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user