Merge branch 'jdurante-1-stripe-paywall' of github.com:kjannette/ax3Client into jdurante-1-stripe-paywall

This commit is contained in:
Jacob
2024-01-26 08:49:41 -05:00
8 changed files with 365 additions and 85 deletions

View 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,
},
];

View File

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