Files
formbricks/apps/web/modules/auth/components/back-to-login-button.tsx
T
Dhruwang Jariwala 016dc3d92a feat: Dashboards & Charts (#7390)
Co-authored-by: TheodorTomas <theodortomas@gmail.com>
Co-authored-by: Johannes <johannes@formbricks.com>
2026-04-16 12:51:08 +04:00

15 lines
426 B
TypeScript

import Link from "next/link";
import { getTranslate } from "@/lingodotdev/server";
import { Button } from "@/modules/ui/components/button";
export const BackToLoginButton = async () => {
const t = await getTranslate();
return (
<Button variant="default" className="w-full justify-center">
<Link href="/auth/login" className="h-full w-full">
{t("auth.signup.log_in")}
</Link>
</Button>
);
};