diff --git a/frontend/src/pages/Login.jsx b/frontend/src/pages/Login.jsx index daa1b9c..9b50489 100644 --- a/frontend/src/pages/Login.jsx +++ b/frontend/src/pages/Login.jsx @@ -6,6 +6,7 @@ import { useAuth } from '../AuthContext'; export default function Login() { const [email, setEmail] = useState(''); const [password, setPassword] = useState(''); + const [showPassword, setShowPassword] = useState(false); const [loading, setLoading] = useState(false); const { login } = useAuth(); const navigate = useNavigate(); @@ -42,13 +43,34 @@ export default function Login() {
- setPassword(e.target.value)} - required - /> +
+ setPassword(e.target.value)} + required + style={{ paddingRight: '2.5rem' }} + /> + +
+