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

# useLoginIdentifiers

<ParamField body="useLoginIdentifiers()" type={<span><a href="/docs/libraries/acul/react-sdk/API-Reference/Types/type-aliases/IdentifierType">IdentifierType[]</a></span>}>
  Renvoie une liste de types d’identifiants actifs (comme `'email'`, `'phone'` ou `'username'`)
  actuellement utilisés dans le flux d’authentification ou le processus de connexion.

  ## Valeur de retour

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

  Un tableau de [IdentifierType](/docs/fr-CA/libraries/acul/react-sdk/API-Reference/Types/type-aliases/IdentifierType) représentant les identifiants actifs.

  ## Écrans pris en charge

  * `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 could be:
  // ['email', 'username']
  ```
</ParamField>
