Add src/app/register/page.tsx
This commit is contained in:
20
src/app/register/page.tsx
Normal file
20
src/app/register/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user