diff --git a/frontend/src/pages/Login.tsx b/frontend/src/pages/Login.tsx index d2ba941..09e07cc 100644 --- a/frontend/src/pages/Login.tsx +++ b/frontend/src/pages/Login.tsx @@ -1,14 +1,14 @@ import { FormEvent, useState } from "react"; import { useNavigate } from "react-router-dom"; -import { Moon, ShieldCheck, Sun } from "lucide-react"; +import { Activity, LockKeyhole, Moon, Network, ShieldCheck, Sun } from "lucide-react"; import { login } from "../api/client"; import { useTheme } from "../stores/theme"; export function Login() { const navigate = useNavigate(); - const [email, setEmail] = useState("admin@nexafabric.local"); - const [password, setPassword] = useState("ChangeMe_UseEnvInstead"); + const [email, setEmail] = useState(""); + const [password, setPassword] = useState(""); const [error, setError] = useState(""); const { dark, toggle } = useTheme(); @@ -24,36 +24,93 @@ export function Login() { } return ( -