Options
All
  • Public
  • Public/Protected
  • All
Menu

Props for the RegisterForm components. Extends ILoginFormProps

Required props include onEmailChanged, onPhoneChanged and onPasswordChanged.

Allows you to customize initialEmail / phone / password as well as emailInputProps.

Hierarchy

Index

Properties

Optional emailInputProps

emailInputProps: ICrossEditorProps | undefined

Optional props for the e-mail input. Typically used to change the label prop. See {@link ICrossEditorProps}

Optional initialEmail

initialEmail: string | undefined

Optional initialPassword

initialPassword: string | undefined

Optional initialPhone

initialPhone: string | undefined

onEmailChanged

onEmailChanged: function

Type declaration

    • (email: string | undefined): void
    • Parameters

      • email: string | undefined

      Returns void

onPasswordChanged

onPasswordChanged: function

Type declaration

    • (password: string | undefined): void
    • Parameters

      • password: string | undefined

      Returns void

onPhoneChanged

onPhoneChanged: function

Type declaration

    • (password: string | undefined): void
    • Parameters

      • password: string | undefined

      Returns void

Optional passwordInputProps

passwordInputProps: ICrossEditorProps | undefined

Optional props for the password input. Typically used to change the label prop. See {@link ICrossEditorProps}

Optional phoneInputProps

phoneInputProps: ICrossEditorProps | undefined

Optional props for the phone input. Typically used to change the label prop or change the maskProps. See {@link ICrossEditorProps}