feat:Added monitoring charts

This commit is contained in:
2025-03-26 22:50:05 +05:30
parent b961ef8fd3
commit 407d6df417
4 changed files with 212 additions and 218 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ import React from "react";
const Container = ({ children }) => { const Container = ({ children }) => {
return ( return (
<> <>
<div className="w-full h-auto">{children}</div> <div className="w-full max-h-screen">{children}</div>
</> </>
); );
}; };
-4
View File
@@ -5,8 +5,6 @@ import { Link } from "react-router-dom";
const Navbar2 = () => { const Navbar2 = () => {
const user = useSelector((store) => store.user); const user = useSelector((store) => store.user);
const [isLoggedIn, setLoggedIn] = useState(false); const [isLoggedIn, setLoggedIn] = useState(false);
useEffect(() => { useEffect(() => {
@@ -23,8 +21,6 @@ const Navbar2 = () => {
const user = await responce.json(); const user = await responce.json();
dispatch(userSliceActions.addUser(user.data)); dispatch(userSliceActions.addUser(user.data));
}; };
return ( return (
+85 -90
View File
@@ -28,8 +28,6 @@ const LoginPage = () => {
const user = await responce.json(); const user = await responce.json();
dispatch(userSliceActions.addUser(user.data)); dispatch(userSliceActions.addUser(user.data));
emailElement.current.value = ""; emailElement.current.value = "";
@@ -40,97 +38,94 @@ const LoginPage = () => {
} }
}; };
return ( return (
<section className="bg-[url(/images/loginBG.png)] bg-cover font-sans flex flex-col justify-center md:p-5 "> <section className="bg-[url(/images/loginBG.png)] bg-cover font-sans flex flex-col justify-center md:p-5 w-full min-h-screen max-h-screen">
<div className="container mx-auto "> <div className="flex justify-between items-center h-full">
<div className="flex justify-between pt-24"> <div className=" rounded-lg shadow-md ">
<div className=" rounded-lg shadow-md "> <div className="flex flex-col items-center justify-center h-full ">
<div className="flex flex-col items-center justify-center h-full "> <h1 className="text-6xl font-bold text-white mb-4 md:text-6xl lg:text-9xl ml-8">
<h1 className="text-6xl font-bold text-white mb-4 md:text-6xl lg:text-9xl ml-8"> Welcome Back!
Welcome Back! </h1>
</h1> </div>
</div>
<div className=" backdrop-blur-md bg-gradient-to-tr from-slate-300/10 to-slate-200/30 rounded-lg shadow-md lg:p-36">
<h1 className="text-2xl font-bold text-gray-50 mb-4">Login</h1>
<p className="text-gray-100 mb-6">
Welcome back! Please login to your account.
</p>
<form className="space-y-6" onSubmit={handleLogin}>
<div>
<label
for="username"
className="block mb-2 text-sm font-medium text-gray-100 dark:text-white"
>
Email
</label>
<input
type="email"
id="username"
ref={emailElement}
className="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500"
placeholder="username@gmail.com"
required
/>
</div> </div>
</div> <div>
<div className=" backdrop-blur-md bg-gradient-to-tr from-slate-300/10 to-slate-200/30 rounded-lg shadow-md lg:p-36"> <label
<h1 className="text-2xl font-bold text-gray-50 mb-4">Login</h1> for="password"
<p className="text-gray-100 mb-6"> className="block mb-2 text-sm font-medium text-gray-100 dark:text-white"
Welcome back! Please login to your account. >
Password
</label>
<input
type="password"
id="password"
ref={passwordElement}
className="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500"
placeholder="********"
required
/>
</div>
<div className="flex items-center justify-between">
<div className="flex items-center">
<input
id="remember_me"
type="checkbox"
value=""
className="w-4 h-4 text-blue-600 bg-gray-100 border-gray-300 rounded focus:ring-blue-500 dark:focus:ring-blue-600 dark:ring-offset-gray-800 focus:ring-2 dark:bg-gray-700 dark:border-gray-600"
/>
<label
for="remember_me"
className="ml-2 text-sm font-medium text-gray-100 dark:text-gray-300"
>
Remember Me
</label>
</div>
<Link
to={"/user/forgetpassword"}
className="text-sm font-medium text-blue-600 hover:underline dark:text-blue-500"
>
Forgot Password?
</Link>
</div>
<div className=" flex justify-center">
<button
type="submit"
className="text-white w-1/2 backdrop-blur-lg bg-gradient-to-tr from-slate-100/15 to-slate-200/15 shadow-lg hover:backdrop-blur-lg focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 text-center dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800"
>
Login
</button>
</div>
<p className="text-gray-100 text-center mt-4">
New User?{" "}
<Link
to={"/user/signup"}
className="text-blue-600 hover:underline"
>
Signup
</Link>
</p> </p>
<form className="space-y-6" onSubmit={handleLogin}> </form>
<div>
<label
for="username"
className="block mb-2 text-sm font-medium text-gray-100 dark:text-white"
>
Email
</label>
<input
type="email"
id="username"
ref={emailElement}
className="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500"
placeholder="username@gmail.com"
required
/>
</div>
<div>
<label
for="password"
className="block mb-2 text-sm font-medium text-gray-100 dark:text-white"
>
Password
</label>
<input
type="password"
id="password"
ref={passwordElement}
className="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500"
placeholder="********"
required
/>
</div>
<div className="flex items-center justify-between">
<div className="flex items-center">
<input
id="remember_me"
type="checkbox"
value=""
className="w-4 h-4 text-blue-600 bg-gray-100 border-gray-300 rounded focus:ring-blue-500 dark:focus:ring-blue-600 dark:ring-offset-gray-800 focus:ring-2 dark:bg-gray-700 dark:border-gray-600"
/>
<label
for="remember_me"
className="ml-2 text-sm font-medium text-gray-100 dark:text-gray-300"
>
Remember Me
</label>
</div>
<Link
to={"/user/forgetpassword"}
className="text-sm font-medium text-blue-600 hover:underline dark:text-blue-500"
>
Forgot Password?
</Link>
</div>
<div className=" flex justify-center">
<button
type="submit"
className="text-white w-1/2 backdrop-blur-lg bg-gradient-to-tr from-slate-100/15 to-slate-200/15 shadow-lg hover:backdrop-blur-lg focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 text-center dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800"
>
Login
</button>
</div>
<p className="text-gray-100 text-center mt-4">
New User?{" "}
<Link
to={"/user/signup"}
className="text-blue-600 hover:underline"
>
Signup
</Link>
</p>
</form>
</div>
</div> </div>
</div> </div>
</section> </section>
+126 -123
View File
@@ -33,8 +33,6 @@ const SignupPage = () => {
}); });
const data = await responce.json(); const data = await responce.json();
firstNameElement.current.value = ""; firstNameElement.current.value = "";
lastNameElement.current.value = ""; lastNameElement.current.value = "";
emailElement.current.value = ""; emailElement.current.value = "";
@@ -46,141 +44,147 @@ const SignupPage = () => {
}; };
return ( return (
<section className="bg-[url(https://i.pinimg.com/736x/6c/d2/cc/6cd2cc05a7e464a78bdf1124b4ad30f1.jpg)] bg-cover font-sans flex flex-col justify-center md:p-5 "> <section className="bg-[url(https://i.pinimg.com/736x/6c/d2/cc/6cd2cc05a7e464a78bdf1124b4ad30f1.jpg)] bg-cover font-sans flex flex-col justify-center min-h-screen max-h-screen">
<div className="container mx-auto p-4 pt-24 sm:mt-32 md:mt-0"> <div className="flex justify-between items-center w-full h-full p-5">
<div className="grid grid-cols-1 md:grid-cols-2 gap-8"> {/* <div className="bg-gradient-to-br from-purple-300 to-pink-200 rounded-lg shadow-md min-h-40 object-center md:hidden">
<div className="bg-gradient-to-br from-purple-300 to-pink-200 rounded-lg shadow-md min-h-40 object-center md:hidden"> <div className="flex flex-col items-center justify-center h-full relative">
<div className="flex flex-col items-center justify-center h-full relative"> <img
<img src="/images/background1.jpg"
src="/images/background1.jpg" alt=""
alt="" className="absolute order-3 w-full h-full"
className="absolute order-3 w-full h-full" />
/> <h1 className="text-6xl font-bold text-white mb-4 md:text-6xl lg:text-9xl relative ml-8">
<h1 className="text-6xl font-bold text-white mb-4 md:text-6xl lg:text-9xl relative ml-8"> Welcome to Crop Compass
Welcome to Crop Compass
</h1>
</div>
</div>
<div className="backdrop-blur-md bg-gradient-to-tr from-slate-300/10 to-slate-200/30 rounded-lg shadow-md lg:p-36">
<h1 className="text-2xl font-bold text-gray-50 mb-4">
Register Your account
</h1> </h1>
<p className="text-gray-100">Welcome to Crop Compass.</p> </div>
<p className="text-gray-100 mb-6"> </div> */}
Please register your new account. <div className="backdrop-blur-md bg-gradient-to-tr from-slate-300/10 to-slate-200/30 rounded-lg shadow-md lg:p-36 h-[95vh]">
</p> <h1 className="text-2xl font-bold text-gray-50 mb-4">
<form Register Your account
action="#" </h1>
className="space-y-6" <p className="text-gray-100">Welcome to Crop Compass.</p>
onSubmit={handleRegisteration} <p className="text-gray-100 mb-6">
> Please register your new account.
<div className="flex flex-col gap-5 sm:flex-row"> </p>
<div className="w-full"> <form action="#" className="space-y-6" onSubmit={handleRegisteration}>
<label <div className="flex flex-col gap-5 sm:flex-row">
htmlFor="username" <div className="w-full">
className="block mb-2 text-sm font-medium text-gray-100 dark:text-white"
>
First Name
</label>
<input
type="text"
id="firstName"
ref={firstNameElement}
className="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500"
placeholder="John"
required
/>
</div>
<div className="w-full">
<label
htmlFor="username"
className="block mb-2 text-sm font-medium text-gray-100 dark:text-white"
>
Last Name
</label>
<input
type="text"
id="LastName"
ref={lastNameElement}
className="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500"
placeholder="Doe"
required
/>
</div>
</div>
<div>
<label <label
htmlFor="username" htmlFor="username"
className="block mb-2 text-sm font-medium text-gray-100 dark:text-white" className="block mb-2 text-sm font-medium text-gray-100 dark:text-white"
> >
Email First Name
</label> </label>
<input <input
type="email" type="text"
id="email" id="firstName"
ref={emailElement} ref={firstNameElement}
className="bg-gray-50 border border-gray-300 text-black text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500"
placeholder="user@mail.com"
required
/>
</div>
<div>
<label
htmlFor="password"
className="block mb-2 text-sm font-medium text-gray-900 dark:text-white"
>
Password
</label>
<input
type="password"
id="password"
ref={passwordElement}
className="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500" className="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500"
placeholder="At least 6 unique Characters.. " placeholder="John"
required required
/> />
</div> </div>
<div className="flex items-center justify-between"> <div className="w-full">
<div className="flex items-center"> <label
<input htmlFor="username"
id="remember_me" className="block mb-2 text-sm font-medium text-gray-100 dark:text-white"
type="checkbox"
value=""
className="w-4 h-4 text-blue-600 bg-gray-100 border-gray-300 rounded focus:ring-blue-500 dark:focus:ring-blue-600 dark:ring-offset-gray-800 focus:ring-2 dark:bg-gray-700 dark:border-gray-600"
/>
<label
htmlFor="remember_me"
className="ml-2 text-sm font-medium text-gray-900 dark:text-gray-300"
>
Remember Me
</label>
</div>
<a
href="#"
className="text-sm font-medium text-blue-600 hover:underline dark:text-blue-500"
></a>
</div>
<div className=" flex justify-center">
<button
type="submit"
className="text-white w-1/2 backdrop-blur-lg bg-gradient-to-tr from-slate-100/15 to-slate-200/15 shadow-lg hover:backdrop-blur-lg focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 text-center dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800"
> >
Register your Account Last Name
</button> </label>
<input
type="text"
id="LastName"
ref={lastNameElement}
className="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500"
placeholder="Doe"
required
/>
</div> </div>
<p className="text-gray-600 text-center mt-4"> </div>
Already have an Account ?{" "}
<Link <div>
to={"/user/login"} <label
className="text-blue-600 hover:underline" htmlFor="username"
className="block mb-2 text-sm font-medium text-gray-100 dark:text-white"
>
Email
</label>
<input
type="email"
id="email"
ref={emailElement}
className="bg-gray-50 border border-gray-300 text-black text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500"
placeholder="user@mail.com"
required
/>
</div>
<div>
<label
htmlFor="password"
className="block mb-2 text-sm font-medium text-gray-900 dark:text-white"
>
Password
</label>
<input
type="password"
id="password"
ref={passwordElement}
className="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500"
placeholder="At least 6 unique Characters.. "
required
/>
</div>
<div className="flex items-center justify-between">
<div className="flex items-center">
<input
id="remember_me"
type="checkbox"
value=""
className="w-4 h-4 text-blue-600 bg-gray-100 border-gray-300 rounded focus:ring-blue-500 dark:focus:ring-blue-600 dark:ring-offset-gray-800 focus:ring-2 dark:bg-gray-700 dark:border-gray-600"
/>
<label
htmlFor="remember_me"
className="ml-2 text-sm font-medium text-gray-900 dark:text-gray-300"
> >
Login Remember Me
</Link> </label>
</p> </div>
</form> <a
href="#"
className="text-sm font-medium text-blue-600 hover:underline dark:text-blue-500"
></a>
</div>
<div className=" flex justify-center">
<button
type="submit"
className="text-white w-1/2 backdrop-blur-lg bg-gradient-to-tr from-slate-100/15 to-slate-200/15 shadow-lg hover:backdrop-blur-lg focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 text-center dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800"
>
Register your Account
</button>
</div>
<p className="text-gray-600 text-center mt-4">
Already have an Account ?{" "}
<Link
to={"/user/login"}
className="text-blue-600 hover:underline"
>
Login
</Link>
</p>
</form>
</div>
<div className="rounded-lg shadow-md text-center w-auto">
<div className="flex flex-col items-center justify-center h-full ">
<h1 className="text-6xl font-bold text-white mb-4 md:text-6xl lg:text-9xl ml-8">
Start your Journey
<br />
with <br />
Crop Compass
</h1>
</div> </div>
{/* <div className=" backdrop-blur-sm rounded-lg shadow-md md:block"> </div>
{/* <div className=" backdrop-blur-sm rounded-lg shadow-md md:block">
<div className="flex flex-col items-center justify-center h-full relative text-center"> <div className="flex flex-col items-center justify-center h-full relative text-center">
<img <img
src="/images/background1.jpg" src="/images/background1.jpg"
@@ -192,7 +196,6 @@ const SignupPage = () => {
</h1> </h1>
</div> </div>
</div> */} </div> */}
</div>
</div> </div>
</section> </section>
); );