BETTER-AUTH. UI
Mutations

useSignInUsername

Username/password sign-in mutation.

Resets the session query on success so the new session is refetched.

Usage

import { authClient } from "@/lib/auth-client"
import { useSignInUsername } from "@better-auth-ui/react/plugins/username"

const { mutate: signInUsername } = useSignInUsername(authClient)

signInUsername({
  username: "alice",
  password: "hunter2"
})

useSignInUsername requires the Better Auth username plugin. Import your configured authClient. It already carries the plugin methods from createAuthClient.

Options factory

import { signInUsernameOptions } from "@better-auth-ui/core/plugins/username"
import { useMutation } from "@tanstack/react-query"

const { mutate } = useMutation(signInUsernameOptions(authClient))

Params

Prop

Type

Last updated on

On this page