mirror of
https://github.com/hamster1963/nezha-dash.git
synced 2025-04-24 21:10:45 +08:00
77 lines
2.2 KiB
TypeScript
77 lines
2.2 KiB
TypeScript
"use client";
|
|
|
|
import { getCsrfToken } from "next-auth/react";
|
|
import { useTranslations } from "next-intl";
|
|
import { useRouter } from "next/navigation";
|
|
import { useEffect, useState } from "react";
|
|
|
|
import { Loader } from "./loading/Loader";
|
|
|
|
export function SignIn() {
|
|
const t = useTranslations("SignIn");
|
|
|
|
const [csrfToken, setCsrfToken] = useState("");
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
const router = useRouter();
|
|
|
|
useEffect(() => {
|
|
async function loadProviders() {
|
|
const csrf = await getCsrfToken();
|
|
setCsrfToken(csrf);
|
|
}
|
|
loadProviders();
|
|
}, []);
|
|
|
|
const handleSubmit = async (e: React.FormEvent<HTMLFormElement>) => {
|
|
e.preventDefault();
|
|
setLoading(true);
|
|
const formData = new FormData(e.currentTarget);
|
|
|
|
|
|
// 直接构建 URL 编码的字符串
|
|
const urlEncodedData = [
|
|
`csrfToken=${encodeURIComponent(csrfToken)}`,
|
|
`redirect=false`,
|
|
`password=${encodeURIComponent(formData.get('password') as string)}`,
|
|
].join('&');
|
|
|
|
await fetch("/api/auth/callback/credentials", {
|
|
method: "POST",
|
|
headers: {
|
|
"Content-Type": "application/x-www-form-urlencoded",
|
|
},
|
|
body: urlEncodedData,
|
|
});
|
|
router.push("/");
|
|
router.refresh();
|
|
setLoading(false)
|
|
};
|
|
|
|
return (
|
|
<form
|
|
className="flex flex-col items-center justify-start gap-4 p-4 "
|
|
onSubmit={handleSubmit}
|
|
>
|
|
<input type="hidden" name="csrfToken" value={csrfToken} />
|
|
<section className="flex flex-col items-start gap-2">
|
|
<label className="flex flex-col items-start gap-1 ">
|
|
<p className="text-base font-semibold">{t("SignInMessage")}</p>
|
|
<input
|
|
className="px-1 border-[1px] rounded-[5px]"
|
|
name="password"
|
|
type="password"
|
|
/>
|
|
</label>
|
|
<button
|
|
className=" px-1.5 py-0.5 w-fit flex items-center gap-1 text-sm font-semibold rounded-[8px] border bg-card hover:brightness-95 transition-all text-card-foreground shadow-lg shadow-neutral-200/40 dark:shadow-none"
|
|
disabled={loading}
|
|
>
|
|
{t("Submit")}
|
|
{loading && <Loader visible={true} />}
|
|
</button>
|
|
</section>
|
|
</form>
|
|
);
|
|
}
|