Is your feature request related to a problem? Please describe.
Frontend has login and register pages but there's no backend implementation to complete the functionality.
Describe the solution you'd like
Create backend endpoints for user authentication using email and password.
Required Endpoints:
Authentication:
POST /api/auth/register - User registration with email & password
POST /api/auth/login - User login with email & password
POST /api/auth/logout - User logout
GET /api/auth/me - Get current authenticated user
User Profile:
GET /api/users/profile - Get user profile
PUT /api/users/profile - Update user profile
Is your feature request related to a problem? Please describe.
Frontend has login and register pages but there's no backend implementation to complete the functionality.
Describe the solution you'd like
Create backend endpoints for user authentication using email and password.
Required Endpoints:
Authentication:
POST /api/auth/register - User registration with email & password
POST /api/auth/login - User login with email & password
POST /api/auth/logout - User logout
GET /api/auth/me - Get current authenticated user
User Profile:
GET /api/users/profile - Get user profile
PUT /api/users/profile - Update user profile