From 1143365a005c8647dedacdeffc30b6a182dda374 Mon Sep 17 00:00:00 2001 From: WeeXnes Date: Tue, 1 Jul 2025 23:21:03 +0200 Subject: [PATCH] update --- src/app/login/page.tsx | 36 +++++++++++++++++++++++------------- src/lib/constants.ts | 4 ++-- 2 files changed, 25 insertions(+), 15 deletions(-) diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx index 58ec071..90c16ab 100644 --- a/src/app/login/page.tsx +++ b/src/app/login/page.tsx @@ -1,22 +1,32 @@ import LoginForm from './components/login-form'; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; import { AppLogo } from '@/components/core/AppLogo'; +import Link from "next/link"; export default function LoginPage() { return ( -
- - -
- -
- Welcome Back - Sign in to access your VividCDN account. -
- - - -
+
+ + +
+ +
+ Welcome Back + Sign in to access your VividCDN account. +
+ + + +
+
); } diff --git a/src/lib/constants.ts b/src/lib/constants.ts index 273c047..e8e7fa2 100644 --- a/src/lib/constants.ts +++ b/src/lib/constants.ts @@ -1,3 +1,3 @@ export const ADMIN_USERNAME = "admin"; -export const ADMIN_PASSWORD_HASH = "replace with valid bcrypt hash"; -export const AUTH_COOKIE_NAME = "fileverse_session"; +export const ADMIN_PASSWORD_HASH = "$2a$12$5.CxdP7e2HhsDzDagti1muu0SuMyw50vd2wSAbg0Jw6I8/GEkimGO"; +export const AUTH_COOKIE_NAME = "vividcdn_authed";