> ## Documentation Index
> Fetch the complete documentation index at: https://translations.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# useLoginIdentifiers

<ParamField body="useLoginIdentifiers()" type={<span><a href="/ja/docs/libraries/acul/react-sdk/API-Reference/Types/type-aliases/IdentifierType">IdentifierType[]</a></span>}>
  認証フローまたはログインプロセスで現在使用されている、
  有効な識別子タイプ (`'email'`、`'phone'`、`'username'` など) の一覧を返します。

  ## 戻り値

  [`IdentifierType`](/ja/docs/libraries/acul/react-sdk/API-Reference/Types/type-aliases/IdentifierType)\[]

  有効な識別子を表す [IdentifierType](/ja/docs/libraries/acul/react-sdk/API-Reference/Types/type-aliases/IdentifierType) の配列。

  ## サポートされている画面

  * `login`
  * `login-id`
  * `reset-password-request`

  ```tsx Example theme={null}
  import { useLoginIdentifiers } from '@auth0/auth0-acul-react/login';

  const loginIdentifiers = useLoginIdentifiers();
  const hasEmail = loginIdentifiers.includes('email');
  const hasPhone = loginIdentifiers.includes('phone');
  const hasUsername = loginIdentifiers.includes('username');

  // loginIdentifiers は次のようになります:
  // ['email', 'username']
  ```
</ParamField>
