diff --git a/web/components/LoginPage.tsx b/web/components/LoginPage.tsx index 1cb2d4f..9341be0 100644 --- a/web/components/LoginPage.tsx +++ b/web/components/LoginPage.tsx @@ -35,7 +35,7 @@ const LoginPage: React.FC = ({ onLoginSuccess }) => {
-
+
@@ -56,7 +56,7 @@ const LoginPage: React.FC = ({ onLoginSuccess }) => { setUsername(e.target.value); setError(''); }} - className="w-full px-4 py-3 rounded-lg border border-slate-300 focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition-all" + className="w-full px-4 py-3 rounded-xl border border-slate-300 focus:ring-2 focus:ring-indigo-500/20 focus:border-indigo-500 outline-none transition-all" placeholder={t('usernamePlaceholder') || 'Username'} />
@@ -68,7 +68,7 @@ const LoginPage: React.FC = ({ onLoginSuccess }) => { setPassword(e.target.value); setError(''); }} - className="w-full px-4 py-3 rounded-lg border border-slate-300 focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition-all" + className="w-full px-4 py-3 rounded-xl border border-slate-300 focus:ring-2 focus:ring-indigo-500/20 focus:border-indigo-500 outline-none transition-all" placeholder={t('passwordPlaceholder') || 'Password'} /> {error &&

{error}

} @@ -76,7 +76,7 @@ const LoginPage: React.FC = ({ onLoginSuccess }) => {