Merge branch 'jdurante-1-stripe-paywall' of github.com:kjannette/ax3Client into jdurante-1-stripe-paywall
This commit is contained in:
26
src/Constants/Fields/RadioFields.js
Normal file
26
src/Constants/Fields/RadioFields.js
Normal file
@@ -0,0 +1,26 @@
|
||||
export const signupRadioFields = [
|
||||
{
|
||||
name: "Monthly - basic",
|
||||
label: "Monthly - basic",
|
||||
value: "monthlyBasic",
|
||||
description: "Generate 1 document per month",
|
||||
details: "Billed every month",
|
||||
price: 89,
|
||||
},
|
||||
{
|
||||
name: "Monthly - pro",
|
||||
label: "Monthly - pro",
|
||||
value: "monthlyProPlan",
|
||||
description: "Generate up to 3 documents per month",
|
||||
details: "Billed every three months. A xxx percent savings",
|
||||
price: 159,
|
||||
},
|
||||
{
|
||||
name: "Annual - unlimted annual",
|
||||
label: "Annual - unlimited annual",
|
||||
value: "annualUnlimited",
|
||||
description: "Generate unlimited documents. Billed annualy",
|
||||
details: "Billed annualy. A xxx percent savings",
|
||||
price: 1489,
|
||||
},
|
||||
];
|
||||
@@ -31,7 +31,13 @@ export const signupFields = {
|
||||
},
|
||||
barNumber: { required: true, label: "Bar Number", maxLength: 45 },
|
||||
practiceArea: { required: true, label: "Practice Area", maxLength: 45 },
|
||||
email: { required: true, label: "Email", maxLength: 45, type: "email" },
|
||||
email: {
|
||||
required: true,
|
||||
label: "Email",
|
||||
maxLength: 45,
|
||||
type: "email",
|
||||
inputWidth: "80%",
|
||||
},
|
||||
password: {
|
||||
required: true,
|
||||
label: "Password",
|
||||
|
||||
Reference in New Issue
Block a user