diff --git a/frontend/src/pages/Login.tsx b/frontend/src/pages/Login.tsx index 502ecd8..400f65f 100644 --- a/frontend/src/pages/Login.tsx +++ b/frontend/src/pages/Login.tsx @@ -49,7 +49,7 @@ const Login: React.FC = () => { type="text" value={username} onChange={(e) => setUsername(e.target.value)} - className="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent" + className="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent text-gray-900" placeholder="Enter your username" required autoComplete="username" @@ -65,7 +65,7 @@ const Login: React.FC = () => { type="password" value={password} onChange={(e) => setPassword(e.target.value)} - className="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent" + className="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent text-gray-900" placeholder="Enter your password" required autoComplete="current-password"