signupWithPassword(Defined in: packages/modelence/src/auth/client/index.ts:42 Sign up a new user with an email and password.options):Promise<void>
Example
Parameters
| Parameter | Type | Description |
|---|---|---|
options | { avatarUrl?: string; email: string; firstName?: string; handle?: string; lastName?: string; password: string; } | - |
options.avatarUrl? | string | Optional avatar URL. |
options.email | string | The email of the user. |
options.firstName? | string | Optional first name. |
options.handle? | string | Optional custom handle. If omitted, one is derived from the email. |
options.lastName? | string | Optional last name. |
options.password | string | The password of the user. |
Returns
Promise<void>