Issue: Create Register Page UI
Description
Build the registration page UI in a consistent style with the login screen. The goal is to enable new users to sign up with their name, email, and password.
Steps to Follow:
-
Create route
- Add new file:
/src/app/auth/register/page.tsx
-
Implement UI layout
- Use the same structure and styling as login.
- Inputs: name, email, password.
- Add "Already have an account?" link pointing to
/auth/login.
-
Design notes
- Match spacing, font, and button styles from login page.
- Use
dark mode compatibility.
Example:
<Input type="text" label="Full Name" />
<Input type="email" label="Email address" />
<Input type="password" label="Password" />
<Button variant="primary">Sign Up</Button>