estatesfunding/ef-ui/src/components/Login.jsx

197 lines
7.3 KiB
JavaScript

import { useState, useEffect } from "react";
import { NavLink } from "react-router-dom";
import Footer from "./Footer";
import Navbar from "./Navbar";
import { toast } from "react-toastify";
import LoadingIcons from "react-loading-icons";
import { useDispatch, useSelector } from "react-redux";
import { useNavigate } from "react-router-dom";
import { login } from "../redux/features/authSlice";
const initialState = {
email: "",
password: "",
};
const Login = () => {
const [formValue, setFormValue] = useState(initialState);
const { loading, error } = useSelector((state) => ({ ...state.auth }));
const { email, password } = formValue;
const dispatch = useDispatch();
const navigate = useNavigate();
useEffect(() => {
error && toast.error(error);
}, [error]);
const handleSubmit = (e) => {
e.preventDefault();
if (email && password) {
dispatch(login({ formValue, navigate, toast }));
}
};
const onInputChange = (e) => {
let { name, value } = e.target;
setFormValue({ ...formValue, [name]: value });
};
return (
<>
<Navbar />
<br />
<br />
<br />
<br />
<br />
<section
className="py-19 py-md-5 py-xl-8"
style={{ minHeight: "100vh", backgroundColor: "#FFFFFF" }}
>
<div className="container-fluid px-0">
<div className="row gy-4 align-items-center justify-content-center">
<div className="col-12 col-md-6 col-xl-20 text-center text-md-start">
<div className="text-bg-primary">
<div className="px-4">
<hr className="border-primary-subtle mb-4" />
<p className="lead mb-5">
A beautiful, easy-to-use, and secure Investor Portal that
gives your investors everything they may need
</p>
<div className="text-endx">
<svg
xmlns="http://www.w3.org/2000/svg"
width={48}
height={48}
fill="currentColor"
className="bi bi-grip-horizontal"
viewBox="0 0 16 16"
>
<path d="M2 8a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm0-3a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm3 3a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm0-3a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm3 3a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm0-3a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm3 3a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm0-3a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm3 3a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm0-3a1 1 0 1 1 0 2 1 1 0 0 1 0-2z" />
</svg>
</div>
</div>
</div>
</div>
<div className="col-12 col-md-6 col-xl-5">
<div
className="card border-0 rounded-4 shadow-lg"
style={{ width: "100%" }}
>
<div className="card-body p-3 p-md-4 p-xl-5">
<div className="row">
<div className="col-12">
<div className="mb-4">
<h2 className="h3">Please Login</h2>
</div>
</div>
</div>
<form method="POST">
<div className="row gy-3 overflow-hidden">
<div className="col-12"></div>
<div className="col-12"></div>
<div className="col-12">
<div className="form-floating mb-3">
<input
type="email"
className="form-control"
id="email"
placeholder="name@example.com"
value={email}
name="email"
onChange={onInputChange}
required
/>
<label htmlFor="email" className="form-label">
Email
</label>
</div>
</div>
<div className="col-12">
<div className="form-floating mb-3">
<input
type="password"
className="form-control"
id="password"
placeholder="Password"
value={password}
name="password"
onChange={onInputChange}
required
/>
<label htmlFor="password" className="form-label">
Password
</label>
</div>
</div>
<div className="col-12">
<div className="form-check">
<input
className="form-check-input"
type="checkbox"
name="iAgree"
id="iAgree"
required
/>
<label
className="form-check-label text-secondary"
htmlFor="iAgree"
>
Remember me{" "}
</label>
</div>
</div>
<div className="col-12">
<div className="d-grid">
<button
className="btn btn-primary btn-lg"
type="submit"
name="signin"
value="Sign in"
onClick={handleSubmit}
style={{
backgroundColor: "#fda417",
border: "#fda417",
}}
>
{loading && <LoadingIcons.Bars />}
Sign In
</button>
</div>
</div>
</div>
</form>
<div className="row">
<div className="col-12">
<div className="d-flex gap-2 gap-md-4 flex-column flex-md-row justify-content-md-end mt-4">
<p className="m-0 text-secondary text-center">
Don't have an account?{" "}
<NavLink to="/register" className="link-primary text-decoration-none">
Register
</NavLink>
<NavLink to="/forgotpassword" className="nav-link">
Forgot Password
</NavLink>
</p>
</div>
</div>
</div>
<div className="row">
<div className="col-12"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<Footer />
</>
);
};
export default Login;