// Page - Login import { useEffect, useState } from "react"; import SignInForm from "./SignIn"; import SignUpForm from "./SignUp"; import "../scss/styles.scss"; const LoginPage = () => { const [type, setType] = useState("signIn"); useEffect(() => { document.title = "Login / Instructor"; }, []); const handleOnClick = (text) => { if (text !== type) { setType(text); } }; const containerClass = "container " + (type === "signUp" ? "right-panel-active" : ""); return (

Student/Instructor

Welcome Back!

Please login with your personal info

Hello, Instructor!

Please enter your personal details here

); }; export default LoginPage;