mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 20:37:44 +00:00
* fix: rename to * Update demo/nextjs/app/(auth)/forget-password/page.tsx Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com> --------- Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
13 lines
236 B
TypeScript
13 lines
236 B
TypeScript
import { atom } from "jotai";
|
|
|
|
export const optionsAtom = atom({
|
|
email: true,
|
|
passkey: false,
|
|
socialProviders: ["google", "github"],
|
|
magicLink: false,
|
|
signUp: true,
|
|
label: true,
|
|
rememberMe: true,
|
|
requestPasswordReset: true,
|
|
});
|