diff --git a/src/App.js b/src/App.js index 58dbc57..0823b9d 100644 --- a/src/App.js +++ b/src/App.js @@ -25,7 +25,6 @@ function App() { {/* Public routes */} } /> } /> - } /> } /> } /> } /> @@ -42,6 +41,13 @@ function App() { } /> } /> } /> + + + }> + } /> + + + }> } /> diff --git a/src/components/Login/Login.jsx b/src/components/Login/Login.jsx index 38db568..c53a985 100644 --- a/src/components/Login/Login.jsx +++ b/src/components/Login/Login.jsx @@ -1,7 +1,8 @@ import backgroundImage from "../../Images/logoimg.jpg"; import useLoginForm from "../../hooks/useLoginForm"; import useAuthentication from "../../hooks/useAuthentication"; - +import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; +import { faLock,faEnvelope,faNewspaper, faKey } from "@fortawesome/free-solid-svg-icons"; const Signin = () => { const { data, error, handleChange, setError } = useLoginForm(); const { authenticate } = useAuthentication(); @@ -34,8 +35,8 @@ const Signin = () => {