From 0434d9c022a5e49939103b4dc8d650b17c997a31 Mon Sep 17 00:00:00 2001 From: Sewmina Date: Sun, 8 Jun 2025 22:05:37 +0530 Subject: [PATCH] changed pass --- app/login/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/login/page.tsx b/app/login/page.tsx index fe4e475..a25d893 100644 --- a/app/login/page.tsx +++ b/app/login/page.tsx @@ -15,7 +15,7 @@ export default function LoginPage() { // For demo purposes, using hardcoded credentials // In production, this should be replaced with proper authentication - if (username === 'admin' && password === 'admin123') { + if (username === 'duelfi' && password === 'yearofduelfi') { // Set authentication cookie Cookies.set('isAuthenticated', 'true', { path: '/' }); router.push('/dashboard');