Completed login page improvement.

This commit is contained in:
THIS ONE IS A LITTLE BIT TRICKY KRUB 2023-11-19 10:44:12 +07:00
parent e25a6b6d24
commit 9e43ca4ce3

View File

@ -124,7 +124,7 @@ function LoginPage() {
value: "#008000", value: "#008000",
}, },
links: { links: {
color: "#ffffff", color: "#00ff00",
distance: 150, distance: 150,
enable: true, enable: true,
opacity: 0.1, opacity: 0.1,
@ -164,7 +164,7 @@ function LoginPage() {
{/* Login Box */} {/* Login Box */}
<div className="w-1/4 flex items-center justify-center"> <div className="w-1/4 flex items-center justify-center">
<div className="w-96 bg-neutral rounded-lg p-8 shadow-md space-y-4 z-10"> <div className="w-96 bg-neutral rounded-lg p-8 shadow-md space-y-4 z-10">
<h2 className="text-4xl font-semibold text-center">Login</h2> <h2 className="text-3xl font-bold text-center">Login</h2>
{/* Email Input */} {/* Email Input */}
<div className="form-control "> <div className="form-control ">
<label className="label" htmlFor="email"> <label className="label" htmlFor="email">
@ -196,7 +196,7 @@ function LoginPage() {
/> />
</div> </div>
{/* Login Button */} {/* Login Button */}
<button className="btn btn-primary w-full " onClick={handleSubmit}> <button className="btn btn-success w-full " onClick={handleSubmit}>
Login Login
</button> </button>
<div className="divider">OR</div> <div className="divider">OR</div>