Add password fields to onboarding and sign up when user not authenticated
cgen-e43b4e32559b47c0b9034e2be58d8c27
This commit is contained in:
parent
db87f720a1
commit
5d57d31163
1 changed files with 4 additions and 0 deletions
|
|
@ -25,6 +25,8 @@ export interface OnboardingData {
|
|||
firstName: string;
|
||||
lastName: string;
|
||||
email: string;
|
||||
password?: string;
|
||||
confirmPassword?: string;
|
||||
company?: string;
|
||||
};
|
||||
experience: {
|
||||
|
|
@ -44,6 +46,8 @@ const initialData: OnboardingData = {
|
|||
firstName: "",
|
||||
lastName: "",
|
||||
email: "",
|
||||
password: "",
|
||||
confirmPassword: "",
|
||||
company: "",
|
||||
},
|
||||
experience: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue