2025-04-29 23:54:59 +05:30

173 lines
5.0 KiB
JavaScript

import { useState } from "react";
import { Link } from "react-router-dom";
import { AuthWrapper } from "./AuthWrapper";
import { useNavigate } from "react-router-dom";
import "./page-auth.css";
import AuthRepository from "../../repositories/AuthRepository";
import showToast from "../../services/toastService";
import { useForm } from "react-hook-form";
import { zodResolver } from "@hookform/resolvers/zod";
import { z } from "zod";
const loginScheam = z.object({
username: z.string().email(),
password: z.string().min(1, { message: "Password required" }),
rememberMe: z.boolean(),
});
const LoginPage = () => {
const navigate = useNavigate();
const [loading, setLoading] = useState(false);
const [hidepass, setHidepass] = useState(true);
const {
register,
handleSubmit,
formState: { errors },
reset,
getValues,
} = useForm({
resolver: zodResolver(loginScheam),
});
const onSubmit = async (data) => {
setLoading(true);
try {
let userCredential = {
username: data.username,
password: data.password,
};
const response = await AuthRepository.login(userCredential);
localStorage.setItem("jwtToken", response.data.token);
localStorage.setItem("refreshToken", response.data.refreshToken);
setLoading(false);
navigate("/dashboard");
} catch (err) {
showToast("Invalid username or password.","error")
setLoading(false);
}
};
return (
<AuthWrapper>
<h4 className="mb-2">Welcome to PMS!</h4>
<p className="mb-4">
Please sign-in to your account and start the adventure
</p>
<form
id="formAuthentication"
className="mb-3"
onSubmit={handleSubmit(onSubmit)}
>
<div className="mb-2">
<label htmlFor="username" className="form-label">
Email or Username
</label>
<input
type="text"
className="form-control"
id="username"
{...register("username")}
name="username"
placeholder="Enter your email or username"
autoFocus
/>
{errors.username && (
<div
className="danger-text text-start"
style={{ fontSize: "12px" }}
>
{errors.username.message}
</div>
)}
</div>
<div className="mb-3 form-password-toggle">
<div className="d-flex justify-content-center">
<label className="form-label" htmlFor="password">
Password
</label>
</div>
<div className="input-group input-group-merge">
<input
type={hidepass ? "password" : "text"}
autoComplete="true"
id="password"
{...register("password")}
className="form-control"
name="password"
placeholder="&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;&#xb7;"
aria-describedby="password"
/>
<button
type="button"
className="btn border-top border-end border-bottom"
onClick={() => setHidepass(!hidepass)}
style={{
borderTopLeftRadius: 0,
borderBottomLeftRadius: 0,
borderLeft: 0,
}}
>
{hidepass ? (
<i className="bx bx-hide" />
) : (
<i className="bx bx-show" />
)}
</button>
</div>
{errors.password && (
<div
className="danger-text text-start"
style={{ fontSize: "12px" }}
>
{errors.password.message}
</div>
)}
</div>
<div className="mb-3 d-flex justify-content-between">
<div className="form-check d-flex">
<input
className="form-check-input"
type="checkbox"
id="remember-me"
name="rememberMe"
{...register("rememberMe")}
/>
<label className="form-check-label ms-2">Remember Me</label>
</div>
<Link
aria-label="Go to Forgot Password Page"
to="/auth/forgot-password"
>
<span>Forgot Password?</span>
</Link>
</div>
<div className="mb-3">
<button
aria-label="Click me"
className="btn btn-primary d-grid w-100"
type="submit"
>
{loading ? "Please Wait" : " Sign in"}
</button>
</div>
</form>
<p className="text-center">
<span>New on our platform? </span>
<Link
aria-label="Go to Register Page"
to="/auth/reqest/demo"
className="registration-link"
>
<span>Request a Demo</span>
</Link>
</p>
</AuthWrapper>
);
};
export default LoginPage;