mirror of
https://github.com/hamster1963/nezha-dash.git
synced 2025-04-24 21:10:45 +08:00
18 lines
421 B
TypeScript
18 lines
421 B
TypeScript
import { signIn } from "@/auth"
|
|
|
|
export function SignIn() {
|
|
return (
|
|
<form
|
|
action={async (formData) => {
|
|
"use server"
|
|
await signIn("credentials", formData)
|
|
}}
|
|
>
|
|
<label>
|
|
Password
|
|
<input name="password" type="password" />
|
|
</label>
|
|
<button>Sign In</button>
|
|
</form>
|
|
)
|
|
} |