Added /users/me route, and handling auth in frontend
This commit is contained in:
@@ -1,8 +1,15 @@
|
||||
import { GalleryVerticalEnd } from "lucide-react";
|
||||
import Image from "next/image";
|
||||
|
||||
import { LoginForm } from "@/components/login-form";
|
||||
import { cookies } from "next/headers";
|
||||
import { redirect } from "next/navigation";
|
||||
|
||||
export default async function LoginPage() {
|
||||
const cookiesObj = await cookies();
|
||||
const token = cookiesObj.get("auth_token")?.value;
|
||||
|
||||
if (token) redirect("/dashboard");
|
||||
|
||||
export default function LoginPage() {
|
||||
return (
|
||||
<div className="grid min-h-svh lg:grid-cols-2">
|
||||
<div className="flex flex-col gap-4 p-6 md:p-10">
|
||||
@@ -13,7 +20,9 @@ export default function LoginPage() {
|
||||
</div>
|
||||
</div>
|
||||
<div className="relative hidden bg-muted lg:block">
|
||||
<img
|
||||
<Image
|
||||
width={20}
|
||||
height={20}
|
||||
src="/placeholder.svg"
|
||||
alt="Image"
|
||||
className="absolute inset-0 h-full w-full object-cover dark:brightness-[0.2] dark:grayscale"
|
||||
|
||||
Reference in New Issue
Block a user