Switch to version 2: remove src/app/login/page.tsx

This commit is contained in:
2026-05-08 16:56:31 +00:00
parent 2d0c0a397d
commit b150c4d6ef

View File

@@ -1,62 +0,0 @@
"use client";
import { useState } from "react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
export default function LoginPage() {
const [email, setEmail] = useState("");
const [password, setPassword] = useState("");
const handleLogin = (e: React.FormEvent) => {
e.preventDefault();
console.log("Login requested for:", email);
};
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="mediumSmall"
sizing="largeSmallSizeMediumTitles"
background="blurBottom"
cardStyle="solid"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Login", id: "/login" },
]}
brandName="DocSecure"
/>
<div className="min-h-screen flex items-center justify-center p-8">
<form onSubmit={handleLogin} className="w-full max-w-md p-8 bg-card rounded-lg shadow-xl">
<h1 className="text-2xl font-bold mb-6">Login</h1>
<input
type="email"
placeholder="Email"
className="w-full p-3 mb-4 border rounded"
value={email}
onChange={(e) => setEmail(e.target.value)}
required
/>
<input
type="password"
placeholder="Password"
className="w-full p-3 mb-6 border rounded"
value={password}
onChange={(e) => setPassword(e.target.value)}
required
/>
<button type="submit" className="w-full p-3 bg-primary text-white rounded">
Sign In
</button>
</form>
</div>
</ThemeProvider>
);
}