Add src/app/register/page.tsx

This commit is contained in:
2026-05-17 16:28:02 +00:00
parent 6b7f99d160
commit 2777eda4a0

20
src/app/register/page.tsx Normal file
View File

@@ -0,0 +1,20 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
export default function RegisterPage() {
return (
<ThemeProvider>
<div className="flex min-h-screen items-center justify-center">
<div className="w-full max-w-md p-8 border rounded-lg">
<h1 className="text-2xl font-bold mb-6">Register</h1>
<form className="flex flex-col gap-4">
<input type="text" placeholder="Full Name" className="p-2 border rounded" />
<input type="email" placeholder="Email" className="p-2 border rounded" />
<input type="password" placeholder="Password" className="p-2 border rounded" />
<button className="bg-primary text-white p-2 rounded">Create Account</button>
</form>
</div>
</div>
</ThemeProvider>
);
}